spot: v to.19
This commit is contained in:
parent
5c24594d5b
commit
4972cfad94
3 changed files with 2 additions and 3 deletions
|
|
@ -2,7 +2,7 @@ import { createSignal, onMount } from "solid-js";
|
|||
import { AppState, RecordingArea } from "../types";
|
||||
|
||||
export function useAppState() {
|
||||
const [state, setState] = createSignal<AppState>(AppState.EMPTY);
|
||||
const [state, setState] = createSignal<AppState>(AppState.LOGIN);
|
||||
const [isSettingsOpen, setIsSettingsOpen] = createSignal(false);
|
||||
|
||||
onMount(() => {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ export type AudioDevice = {
|
|||
};
|
||||
|
||||
export enum AppState {
|
||||
EMPTY = "empty",
|
||||
LOGIN = "login",
|
||||
READY = "ready",
|
||||
STARTING = "starting",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue