Skip to content

Commit

Permalink
Changed signup message when confirmation times out
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Jackson committed Nov 18, 2024
1 parent 4f5f946 commit 3d5443e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/scripts/appState.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export async function subscribeToDefendant(state) {
const SLEEP_INTERVAL = 500; // How long to sleep between attempts
const MAX_ATTEMPTS = 6;

let signupStatus = { message: 'Signup timed out. Please try again later.' };
let signupStatus = { message: 'Signup successful, but receipt confirmation timed out. If you did not get a signup text, please try again later.' };
for (let i = 0; i < MAX_ATTEMPTS; i++) {
await sleep(SLEEP_INTERVAL);
response = await fetch(checkUrl, { method: "GET", headers: { "Content-Type": "application/json" }});
Expand Down

0 comments on commit 3d5443e

Please sign in to comment.