local storage add add folders

This commit is contained in:
m
2026-09-09 22:04:33 +02:00
parent ce966e67c5
commit b671a222a5
3 changed files with 38 additions and 13 deletions
+3 -3
View File
@@ -33,10 +33,10 @@ export type UserPreferences = {
export async function getUserPreferences(): Promise<UserPreferences> {
return new Promise(()=>{
return {
return new Promise((resolve)=>{
resolve({
syncMode: 'full'
} satisfies UserPreferences
} satisfies UserPreferences)
});
}