fix client db ts types

This commit is contained in:
2026-02-05 19:08:35 -08:00
parent c3d2295ed1
commit 6cac7327fa
4 changed files with 16 additions and 36 deletions

View File

@@ -34,7 +34,7 @@
try {
isSearching = true;
const { db } = await getClientDb();
const { db } = getClientDb();
if (!q) {
anime = await getAnimeList(db, 20);

View File

@@ -54,7 +54,7 @@
}
try {
const { db } = await getClientDb();
const { db } = getClientDb();
await ensureSeeded();
const res = await getAnimeWithSongsByAnnId(db, annId);