diff --git a/src/lib/stores/campaigns.ts b/src/lib/stores/campaigns.ts index 753f2b322..cf082fb94 100644 --- a/src/lib/stores/campaigns.ts +++ b/src/lib/stores/campaigns.ts @@ -1,8 +1,4 @@ -//campaign welcome and startup - -import { page } from '$app/stores'; -import { BillingPlan } from '$lib/constants'; -import { derived } from 'svelte/store'; +import type { BillingPlan } from '$lib/constants'; export type Campaign = { $id: string; @@ -28,5 +24,3 @@ export type Review = { description: string; review: string; }; - -export const campaign = derived(page, ($page) => $page.data.aggregationList as Campaign);