diff options
| author | Bobby <[email protected]> | 2026-04-22 14:32:03 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-04-22 14:32:03 +0530 |
| commit | bbe9d34700995ba1644d726743dbb61144052bd1 (patch) | |
| tree | bee0455edb7023d08b348022672ec2c294f2579c /routes/+page.svelte | |
| parent | 87f4e51a2804d0788c8cd1fcde56923d19d0e06c (diff) | |
| download | hollowdark-main.tar.xz hollowdark-main.zip | |
Diffstat (limited to 'routes/+page.svelte')
| -rw-r--r-- | routes/+page.svelte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/routes/+page.svelte b/routes/+page.svelte index babf994..debc068 100644 --- a/routes/+page.svelte +++ b/routes/+page.svelte @@ -1,10 +1,10 @@ <script lang="ts"> import { onMount } from 'svelte' import { goto } from '$app/navigation' - import { resolve } from '$app/paths' + import { assets, resolve } from '$app/paths' import BeginScreen from '@hollowdark/lib/screens/BeginScreen.svelte' import InitialLoadScreen from '@hollowdark/lib/screens/InitialLoadScreen.svelte' - import { runStubInitialLoad } from '@hollowdark/loading/stub' + import { runInitialLoad } from '@hollowdark/loading/content' import { detectBeginState, type BeginState } from '@hollowdark/loading/session' import { hasCompletedInitialLoad, @@ -18,7 +18,7 @@ onMount(async () => { if (!hasCompletedInitialLoad()) { - await runStubInitialLoad() + await runInitialLoad(assets) markInitialLoadComplete() } beginState = await detectBeginState() |
