adds user preferences store

This commit is contained in:
Ollie Taylor
2023-02-24 19:43:01 +00:00
parent fdde14048d
commit ea75a18671
2 changed files with 64 additions and 0 deletions
+2
View File
@@ -14,6 +14,7 @@
audio_volume,
} from '$lib/context/audio-internals';
import { episode_progress } from '$lib/context/episode-progress';
import { user_preferences } from '$lib/context/user-preferences';
import type { PlayerElement } from '$lib/types/types';
import { onMount } from 'svelte';
@@ -44,6 +45,7 @@
onMount(() => {
episode_progress.load_all();
user_preferences.load();
});
</script>