Refactor: Remove unused structs, redundant services, and streamline repository models

This commit is contained in:
natreex
2026-03-21 23:01:27 -04:00
parent 1478fe10dd
commit 32d2b0fa5a
44 changed files with 2009 additions and 3256 deletions

View File

@@ -561,18 +561,18 @@ function ScribeContent() {
try {
await tauri.syncUser({
userId: user.id,
firstName: user.name,
lastName: user.lastName,
username: user.username,
email: user.email
});
} catch (syncError) {
console.error('[Page] syncUser failed:', syncError);
errorMessage(t("homePage.errors.syncError"));
}
} else {
errorMessage(t("homePage.errors.dbInitError"));
}
} catch (error) {
console.error('[Page] DB init or sync failed:', error);
errorMessage(t("homePage.errors.syncError"));
}
}