feat: Implement app state store & fix authentication for tvs

This commit is contained in:
Aleksi Lassila
2024-03-27 17:22:19 +02:00
parent a574b718f0
commit da2b4ee6d5
10 changed files with 153 additions and 74 deletions

View File

@@ -13,7 +13,7 @@
export let items: Promise<ShowcaseItemProps[]> = Promise.resolve([]);
let showcaseIndex = 6;
let showcaseIndex = 0;
let showcaseLength = 0;
$: items.then((i) => (showcaseLength = i?.length || 0));