Fix incorrect secret being downloaded

This commit is contained in:
Jon Staab
2026-01-13 14:28:21 -08:00
parent adb2ce4846
commit 23ffb15a8d
3 changed files with 7 additions and 8 deletions
+3 -3
View File
@@ -9,9 +9,9 @@
profile: Profile
}
const props: Props = $props()
const {secret, profile}: Props = $props()
const next = () => pushModal(SignUpComplete, props)
const next = () => pushModal(SignUpComplete, {secret, profile})
</script>
<KeyDownload {next} />
<KeyDownload {secret} {next} />