fix: LOW issues #37-#50 — remove mock data, type auth functions, ImageElement interface, remove dead code, implement zoom/format/search, cleanup

This commit is contained in:
A0 Orchestrator
2026-06-30 14:37:59 +02:00
parent ee664750e6
commit b503f75fe2
9 changed files with 164 additions and 74 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ export class SqliteAdapter implements DatabaseInterface {
}
updateProject(id: string, data: Partial<DBProject>): DBProject | null {
const sets: string[] = [];
const sets: string[] = [];
const vals: any[] = [];
if (data.name !== undefined) { sets.push('name = ?'); vals.push(data.name); }
if (data.description !== undefined) { sets.push('description = ?'); vals.push(data.description); }