Skip to content

Commit

Permalink
chore(web): improve error message when failing to setup session
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Sep 27, 2023
1 parent 0096e3e commit 600e61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/lib/stores/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function createSessionStore() {
const session = await SessionService.getSession();
set(session.id);
} catch (err) {
toast.error('Error', 'Failed to get session. Re-attempting shortly.');
toast.error('Error', 'Failed to setup session. Re-attempting shortly.');
console.error('Connection failed, could not connect to internal server. ', err);
_reAttempt();
}
Expand Down

0 comments on commit 600e61b

Please sign in to comment.