Skip to content

Commit

Permalink
Fix error message for signup
Browse files Browse the repository at this point in the history
  • Loading branch information
TSLarson committed Oct 1, 2024
1 parent 2a8710d commit ce03bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection/database/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export function signUp(id) {

const wasInvalidCaptcha = error && error.code === 'invalid_captcha';

swapCaptcha(id, Flow.DEFAULT, wasInvalidCaptcha, () => {
swapCaptcha(id, Flow.SIGNUP, wasInvalidCaptcha, () => {
setTimeout(() => signUpError(id, error), 250);
});
};
Expand Down

0 comments on commit ce03bf1

Please sign in to comment.