Files
flotilla/src/app/components/WalletDisconnect.svelte
T
2025-08-18 13:26:28 -07:00

18 lines
442 B
Svelte

<script lang="ts">
import {dissoc} from "@welshman/lib"
import {pubkey, updateSession} from "@welshman/app"
import Confirm from "@lib/components/Confirm.svelte"
import {clearModals} from "@app/modal"
const confirm = async () => {
updateSession($pubkey!, dissoc("wallet"))
clearModals()
}
</script>
<Confirm
{confirm}
title="Disconnect Wallet"
message="Are you sure you want to disconnect your bitcoin wallet?" />