🎨 Lint project

This commit is contained in:
Rune Harlyk
2025-10-11 10:54:07 +02:00
parent 91a7b170fe
commit a77eb0b1e0
36 changed files with 77 additions and 72 deletions
+1 -1
View File
@@ -16,7 +16,7 @@
let apSettings: ApSettings | null = $state(null)
let apStatus: ApStatus | null = $state(null)
let formField: any = $state()
let formField: Record<string, unknown> = $state()
async function getAPStatus() {
const result = await api.get<ApStatus>('/api/wifi/ap/status')
-1
View File
@@ -3,7 +3,6 @@
import { api } from '$lib/api'
import SettingsCard from '$lib/components/SettingsCard.svelte'
import { AP, Home, MAC, Devices } from '$lib/components/icons'
import Spinner from '$lib/components/Spinner.svelte'
import StatusItem from '$lib/components/StatusItem.svelte'
import { cubicOut } from 'svelte/easing'
import { slide } from 'svelte/transition'
+1 -1
View File
@@ -87,7 +87,7 @@
</div>
{:else}
<ul class="menu">
{#each listOfNetworks as network, i}
{#each listOfNetworks as network}
<li>
<!-- svelte-ignore a11y_click_events_have_key_events -->
<div
+1 -1
View File
@@ -63,7 +63,7 @@
let showWifiDetails = $state(false)
let formField: any = $state()
let formField: Record<string, unknown> = $state()
let formErrors = $state({
ssid: false,