diff --git a/desktop/composables/game.ts b/desktop/composables/game.ts index 7f28435e..c2ffc0c4 100644 --- a/desktop/composables/game.ts +++ b/desktop/composables/game.ts @@ -12,7 +12,7 @@ export type SerializedGameStatus = [ OptionGameStatus | null ]; -const parseStatus = (status: SerializedGameStatus): GameStatus => { +export const parseStatus = (status: SerializedGameStatus): GameStatus => { if (status[0]) { return { type: status[0].type, diff --git a/desktop/pages/library.vue b/desktop/pages/library.vue index a1838d98..925addba 100644 --- a/desktop/pages/library.vue +++ b/desktop/pages/library.vue @@ -1,21 +1,25 @@