remove unnecessary logic
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user