Started implementing user settings -> security -> password management

This commit is contained in:
2026-04-18 15:24:37 +02:00
parent 8afd4a81b0
commit 4eaaacac2c
20 changed files with 575 additions and 7 deletions

View File

@@ -147,7 +147,7 @@ export class IndexedDB {
delete(storeName: string, key: string): Promise<void> {
return new Promise((resolve, reject) => {
if (this.db) {
const transaction = this.db.transaction([storeName], "readonly");
const transaction = this.db.transaction([storeName], "readwrite");
const store = transaction.objectStore(storeName);
const request = store.delete(key);