Chore: Port over Home & Fix Suwayomi-Server Detection on Web

This commit is contained in:
Youwes09
2026-05-24 12:09:29 -05:00
parent 6c39ef538f
commit ae5d9748c7
42 changed files with 3195 additions and 1342 deletions
+13 -5
View File
@@ -1,8 +1,16 @@
import type { Tracker } from '$lib/types'
export const trackingState = $state({
trackers: [] as Tracker[],
loading: false,
error: null as string | null,
syncing: false,
})
trackers: [] as Tracker[],
loading: false,
error: null as string | null,
syncing: false,
records: [] as unknown[],
recordsLoading: false,
recordsError: null as string | null,
searchResults: [] as unknown[],
searchLoading: false,
searchError: null as string | null,
})