feat: new connection flow

This commit is contained in:
2023-07-23 17:44:26 +02:00
parent 998a400395
commit 4cc3343984
9 changed files with 221 additions and 96 deletions

View File

@@ -3,12 +3,12 @@ import type {Action} from "svelte/action"
export interface UserPreferences {
backup: boolean
autoSync: boolean
autoConnect: boolean
}
export const userPreferences = writable<UserPreferences>({
backup: false,
autoSync: true,
autoConnect: true,
})
export const preference: Action<HTMLInputElement, keyof UserPreferences> = (node, key) => {