Skip to content

Commit

Permalink
fix: double request deadline
Browse files Browse the repository at this point in the history
  • Loading branch information
Sampiiiii committed Apr 15, 2024
1 parent 5b02607 commit 221d845
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const RegisterDispatcher: FlowStepComponent = ({ onSecondary, onPrimary }) => {
setTimeout(() => {
console.log("Aborting request deadline exceeded");
abortController.abort();
}, 5000);
}, 10_000);
},
onError: (error) => {
console.log("Error", error);
Expand Down

0 comments on commit 221d845

Please sign in to comment.