From 88b87bfeca06f51c278a7f0afabb4120a890a198 Mon Sep 17 00:00:00 2001 From: Isaac <76838845+isaxk@users.noreply.github.com> Date: Sat, 31 Aug 2024 17:22:24 +0100 Subject: [PATCH] failed build fix --- src/renderer/src/lib/stores.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/renderer/src/lib/stores.ts b/src/renderer/src/lib/stores.ts index 61956c7..9732715 100644 --- a/src/renderer/src/lib/stores.ts +++ b/src/renderer/src/lib/stores.ts @@ -2,7 +2,10 @@ import { writable } from "svelte/store"; import type { musicStore } from "./types"; export const activeView = writable("topbar"); -export const musicDataStore = writable({ - data: null, +export const musicDataStore = writable({ + data: null, + volume: 50, + progress: 0, + state: -1, }); export const theme = writable<"light" | "dark" | null>(null);