style: run format:apply
This commit is contained in:
@@ -122,9 +122,7 @@ export default function CharactersPage() {
|
||||
) : (
|
||||
<div className={styles.grid}>
|
||||
{filtered.map((char) => {
|
||||
const unlocked = store.unlockedCharacters.includes(
|
||||
char.codeName
|
||||
);
|
||||
const unlocked = store.unlockedCharacters.includes(char.codeName);
|
||||
const killer = isKiller(char.idx);
|
||||
return (
|
||||
<div
|
||||
|
||||
@@ -225,9 +225,7 @@ export default function CustomizationsPage() {
|
||||
</button>
|
||||
</header>
|
||||
<div className={styles.tabs}>
|
||||
{(
|
||||
['cosmetics', 'charms', 'badges', 'banners'] as Tab[]
|
||||
).map((t) => (
|
||||
{(['cosmetics', 'charms', 'badges', 'banners'] as Tab[]).map((t) => (
|
||||
<button
|
||||
key={t}
|
||||
className={`${styles.tab} ${tab === t ? styles.tabActive : ''}`}
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ export default function RootLayout({
|
||||
}>) {
|
||||
return (
|
||||
<html lang='en'>
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel='icon' href='/favicon.ico' sizes='any' />
|
||||
<body>
|
||||
<AppContainer>
|
||||
<div className={styles.layoutContainer}>
|
||||
|
||||
Reference in New Issue
Block a user