diff --git a/app/characters/page.tsx b/app/characters/page.tsx index 4000f52..a1c2ca8 100644 --- a/app/characters/page.tsx +++ b/app/characters/page.tsx @@ -122,9 +122,7 @@ export default function CharactersPage() { ) : (
{filtered.map((char) => { - const unlocked = store.unlockedCharacters.includes( - char.codeName - ); + const unlocked = store.unlockedCharacters.includes(char.codeName); const killer = isKiller(char.idx); return (
- {( - ['cosmetics', 'charms', 'badges', 'banners'] as Tab[] - ).map((t) => ( + {(['cosmetics', 'charms', 'badges', 'banners'] as Tab[]).map((t) => (