remove unnecessary logic

This commit is contained in:
2023-11-30 00:15:06 +01:00
parent 5aa429d7eb
commit 3f6913ef5f
4 changed files with 0 additions and 22 deletions

View File

@@ -1,9 +1,6 @@
import { persisted } from 'svelte-local-storage-store';
import type { Writable } from 'svelte/store';
import { writable } from 'svelte/store';
export const playAudio: Writable<boolean> = persisted('playAudio', false);
export const errorMessage: Writable<string | null> = (() => {
const store: Writable<string | null> = writable(null);
return {