diff --git a/src/screens/deck-form/deck-form.tsx b/src/screens/deck-form/deck-form.tsx index c1d83d91..81c54162 100644 --- a/src/screens/deck-form/deck-form.tsx +++ b/src/screens/deck-form/deck-form.tsx @@ -16,7 +16,7 @@ import { assert } from "../../lib/typescript/assert.ts"; export const DeckForm = observer(() => { const deckFormStore = useDeckFormStore(); const screen = screenStore.screen; - assert(screen.type === 'deckForm') + assert(screen.type === "deckForm"); useMount(() => { deckFormStore.loadForm(); diff --git a/src/screens/deck-list/main-screen.tsx b/src/screens/deck-list/main-screen.tsx index 8ac14d79..aff268b1 100644 --- a/src/screens/deck-list/main-screen.tsx +++ b/src/screens/deck-list/main-screen.tsx @@ -74,7 +74,7 @@ export const MainScreen = observer(() => { color: theme.linkColor, })} onClick={() => { - screenStore.go({ type: 'deckForm' }); + screenStore.go({ type: "deckForm" }); }} > create one @@ -88,7 +88,7 @@ export const MainScreen = observer(() => {