There was an error while loading. Please reload this page.
1 parent 848c7c2 commit c3d601dCopy full SHA for c3d601d
1 file changed
src/core/engine/wasm/WasmDatabaseEngine.ts
@@ -301,7 +301,7 @@ export class WasmDatabaseEngine implements DatabaseOperations {
301
const stmt = this.instance.prepare(sql);
302
try {
303
for (const [rId, rowObj] of rowUpdates.entries()) {
304
- const params: any[] = deletedColumns.map(c => rowObj[c.name] ?? null);
+ const params: unknown[] = deletedColumns.map(c => rowObj[c.name] ?? null);
305
params.push(rId);
306
stmt.run(params);
307
}
0 commit comments