This commit is contained in:
Jon Staab
2025-07-04 06:22:19 -07:00
parent 9e8aa2ef3a
commit bfed277ea9
21 changed files with 766 additions and 146 deletions
@@ -0,0 +1,16 @@
<script lang="ts">
import Confirm from "@lib/components/Confirm.svelte"
import {wallet} from "@app/state"
import {clearModals} from "@app/modal"
const confirm = async () => {
wallet.set(undefined)
clearModals()
}
</script>
<Confirm
{confirm}
title="Disconnect Wallet"
message="Are you sure you want to disconnect your bitcoin wallet?" />