-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: dont run parallel load functions when layout data fails
- Loading branch information
1 parent
7319fde
commit 7018e0c
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,15 @@ | |
import { page } from '$app/stores'; | ||
</script> | ||
|
||
<svelte:head> | ||
<title>Quiblet not found</title> | ||
</svelte:head> | ||
|
||
<div class="mt-5 flex flex-1 items-end justify-center gap-5"> | ||
<img src={Quibble404} class="w-28" alt="" /> | ||
<div class="flex flex-col"> | ||
<h4 class="text-xl font-bold text-error">oh noh!!</h4> | ||
<h5 class="text-error">{$page.error?.message}</h5> | ||
<h5>{@html $page.error?.message}</h5> | ||
Check failure on line 14 in frontend/src/routes/(app)/q/+error.svelte GitHub Actions / lint
|
||
<a href="/" aria-label="home" class="btn btn-primary btn-sm mt-4 w-max"> | ||
<coreicons-shape-home class="size-4"></coreicons-shape-home> | ||
Back to home | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters