frontend: lint and format

This commit is contained in:
2026-02-28 13:47:46 +01:00
parent 45fa841f80
commit 8c9da868f4
7 changed files with 29 additions and 39 deletions

View File

@@ -15,7 +15,7 @@ export const useSummonerSpellMap = () => {
watch(
summonerSpellsData,
(newData) => {
newData => {
if (Array.isArray(newData)) {
const map = new Map<number, SummonerSpell>()
for (const spell of newData) {
@@ -30,4 +30,4 @@ export const useSummonerSpellMap = () => {
)
return { summonerSpellMap }
}
}