Skip to content

Commit

Permalink
Merge pull request #7 from isaxk/dev
Browse files Browse the repository at this point in the history
failed build fix
  • Loading branch information
isaxk authored Aug 31, 2024
2 parents 13ecd59 + 88b87bf commit 034d9ef
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/renderer/src/lib/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { writable } from "svelte/store";
import type { musicStore } from "./types";

export const activeView = writable("topbar");
export const musicDataStore = writable<musicStore | { data: null }>({
data: null,
export const musicDataStore = writable<musicStore | null>({
data: null,
volume: 50,
progress: 0,
state: -1,
});
export const theme = writable<"light" | "dark" | null>(null);

0 comments on commit 034d9ef

Please sign in to comment.