diff --git a/spot/entrypoints/popup/hooks/useAppState.ts b/spot/entrypoints/popup/hooks/useAppState.ts index 4c7b6a844..db97bdeb2 100644 --- a/spot/entrypoints/popup/hooks/useAppState.ts +++ b/spot/entrypoints/popup/hooks/useAppState.ts @@ -2,7 +2,7 @@ import { createSignal, onMount } from "solid-js"; import { AppState, RecordingArea } from "../types"; export function useAppState() { - const [state, setState] = createSignal(AppState.EMPTY); + const [state, setState] = createSignal(AppState.LOGIN); const [isSettingsOpen, setIsSettingsOpen] = createSignal(false); onMount(() => { diff --git a/spot/entrypoints/popup/types/index.ts b/spot/entrypoints/popup/types/index.ts index 71f13490f..41cb1e90d 100644 --- a/spot/entrypoints/popup/types/index.ts +++ b/spot/entrypoints/popup/types/index.ts @@ -4,7 +4,6 @@ export type AudioDevice = { }; export enum AppState { - EMPTY = "empty", LOGIN = "login", READY = "ready", STARTING = "starting", diff --git a/spot/package.json b/spot/package.json index 7b78270b3..07b9620bf 100644 --- a/spot/package.json +++ b/spot/package.json @@ -2,7 +2,7 @@ "name": "spot", "description": "manifest.json description", "private": true, - "version": "1.0.17", + "version": "1.0.19", "type": "module", "scripts": { "dev": "wxt",