chore: resolve eslint/svelte-check lints/warnings

This commit is contained in:
2026-01-07 14:00:41 -06:00
parent cf599d09d6
commit dcc496c979
9 changed files with 38 additions and 32 deletions
+2 -5
View File
@@ -118,12 +118,9 @@ export async function deleteAdminTag(id: string): Promise<void> {
}
// Admin Events API (currently mocked - no backend implementation yet)
export async function getAdminEvents(filters?: {
level?: string;
target?: string;
limit?: number;
}): Promise<AdminEvent[]> {
export async function getAdminEvents(): Promise<AdminEvent[]> {
// TODO: Implement when events table is added to backend
// filters parameter will be added when backend implementation is complete
return [];
}