Skip to content

Commit 467629b

Browse files
committed
feat: update import statement for sharedStore to use namespace import
1 parent 0e66898 commit 467629b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/[musical]/(random-set)/external-ads/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import type { ShowData } from '$lib';
33
import type { PageData } from './$types';
4-
import sharedStore from '../store.svelte';
4+
import * as sharedStore from '../store.svelte';
55
66
const { data } = $props<{ data: PageData }>();
77
const showData: ShowData = $derived(data.showData);

src/routes/[musical]/(random-set)/gallery/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts">
22
import type { ShowData } from '$lib';
33
import type { PageData } from './$types';
4-
import sharedStore from '../store.svelte';
4+
import * as sharedStore from '../store.svelte';
55
66
const { data } = $props<{ data: PageData }>();
77
const showData: ShowData = $derived(data.showData);

0 commit comments

Comments
 (0)