diff --git a/src/lib/stores/index.ts b/src/lib/stores/index.ts index 19666f3..f58bc15 100644 --- a/src/lib/stores/index.ts +++ b/src/lib/stores/index.ts @@ -1,10 +1,3 @@ -import { persisted } from 'svelte-persisted-store' import { writable, type Writable } from 'svelte/store' -import type { CostHistoryType } from '$lib/utils/services' -// function getPaperStore(): Writable { -// return persisted('paper_cost_history', []) -// } - -export const paperHistoryStore = writable([]) export const focusedInputStore: Writable = writable(null) diff --git a/src/routes/(app)/history/+page.svelte b/src/routes/(app)/history/+page.svelte index 3fa3956..546db95 100644 --- a/src/routes/(app)/history/+page.svelte +++ b/src/routes/(app)/history/+page.svelte @@ -1,16 +1,18 @@