Files
flotilla/src/app/components/SignUpKey.svelte
T
2026-01-16 11:00:46 -08:00

18 lines
425 B
Svelte

<script lang="ts">
import type {Profile} from "@welshman/util"
import KeyDownload from "@app/components/KeyDownload.svelte"
import SignUpComplete from "@app/components/SignUpComplete.svelte"
import {pushModal} from "@app/util/modal"
type Props = {
secret: string
profile: Profile
}
const props: Props = $props()
const next = () => pushModal(SignUpComplete, props)
</script>
<KeyDownload {next} />