Skip to content

Commit

Permalink
Fix promise polling for payments
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Jun 13, 2024
1 parent c9439f1 commit 01ae4cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app/src/stores/Account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export const useAccountStore = defineStore('account', {
};

// Poll for job to finish
await poll({ taskFn, interval: 1000 });
await poll({ taskFn, interval: 1000, retries: 60 });
},
},
});

0 comments on commit 01ae4cc

Please sign in to comment.