Split key recovery components, bump deps

This commit is contained in:
Jon Staab
2026-01-13 13:16:57 -08:00
parent cdee6ca743
commit adb2ce4846
11 changed files with 213 additions and 166 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
import ContentMinimal from "@app/components/ContentMinimal.svelte"
import ProfileEdit from "@app/components/ProfileEdit.svelte"
import ProfileDelete from "@app/components/ProfileDelete.svelte"
import KeyRecovery from "@app/components/KeyRecovery.svelte"
import KeyRecoveryRequest from "@app/components/KeyRecoveryRequest.svelte"
import SignerStatus from "@app/components/SignerStatus.svelte"
import InfoKeys from "@app/components/InfoKeys.svelte"
import {PLATFORM_NAME} from "@app/core/state"
@@ -41,7 +41,7 @@
const startDelete = () => pushModal(ProfileDelete)
const startRecovery = () => pushModal(KeyRecovery)
const startRecovery = () => pushModal(KeyRecoveryRequest)
let showAdvanced = false
</script>