Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/src/routes/loading/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

await signIn();
} catch (err) {
error = 'Failed to fetch data! Make';
error = 'Make';
snackbar('Failed to fetch data: ' + err, undefined, true);
} finally {
// Close ONLY if we created a new tab for preferred name
Expand Down Expand Up @@ -157,7 +157,7 @@
{#if error == 'Server is (probably) down!'}
<ErrorNotice title="Failed to sign in!" error={error} includeStatusLink={true} />
<Button variant="elevated" square onclick={fetchSchoolEmail}>Try Again</Button>
{:else if error == 'Failed to fetch data! Make'}
{:else if error == 'Make'}
<ErrorNotice title="Failed to fetch data!" error={error} includeStatusLink={false} />
<Button variant="elevated" square onclick={fetchSchoolEmail}>Try Again</Button>
{:else}
Expand Down