Skip to content
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
revert change
  • Loading branch information
briangregoryholmes committed Dec 23, 2025
commit 13710b2963e68e3abb6384211759c05a940f1d84
6 changes: 3 additions & 3 deletions web-common/src/features/canvas/CanvasLoadingState.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
</script>

<div class="size-full justify-center items-center flex flex-col">
{#if errorMessage}
{#if ready}
<slot />
{:else if errorMessage}
<ErrorPage
statusCode={404}
header="Canvas not found"
Expand All @@ -20,8 +22,6 @@
<DashboardBuilding />
{:else if isLoading}
<DelayedSpinner isLoading={true} size="48px" />
{:else if ready}
<slot />
{:else}
<header
role="presentation"
Expand Down
Loading