diff options
| author | Fuwn <[email protected]> | 2024-04-21 19:51:49 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-21 19:51:49 -0700 |
| commit | eebeaa378d49cc8adb597d00fd05bcc314779888 (patch) | |
| tree | d2862e4f952525280a341e44810c261548a07a3f /src/routes/+error.svelte | |
| parent | refactor(TextTransition): move to Layout (diff) | |
| download | due.moe-eebeaa378d49cc8adb597d00fd05bcc314779888.tar.xz due.moe-eebeaa378d49cc8adb597d00fd05bcc314779888.zip | |
refactor(lib): move componenets to modules
Diffstat (limited to 'src/routes/+error.svelte')
| -rw-r--r-- | src/routes/+error.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte index cf0dc34e..9e1bca13 100644 --- a/src/routes/+error.svelte +++ b/src/routes/+error.svelte @@ -1,7 +1,7 @@ <script lang="ts"> import { page } from '$app/stores'; import { closest } from '$lib/Error/path'; - import Popup from '$lib/Popup.svelte'; + import Popup from '$lib/Layout/Popup.svelte'; $: suggestion = closest($page.url.pathname.replace('/', ''), [ 'birthdays', |