Skip to content

Commit 9aec302

Browse files
committed
chore: comments
1 parent e437e06 commit 9aec302

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

app/src/lib/wallet/cosmos/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export type CosmosWalletId = (typeof cosmosWalletsInformation)[number]["id"]
4141
function createCosmosStore(
4242
previousState: ChainWalletStore<"cosmos"> & {
4343
rawAddress: Uint8Array | undefined
44-
connectedWallet: CosmosWalletId | "none"
44+
connectedWallet: CosmosWalletId | undefined
4545
} = {
4646
chain: "cosmos",
4747
hoverState: "none",
@@ -109,7 +109,7 @@ function createCosmosStore(
109109
}
110110
update(v => ({
111111
...v,
112-
connectedWallet: "none",
112+
connectedWallet: undefined,
113113
connectionStatus: "disconnected",
114114
address: undefined,
115115
rawAddress: undefined

app/src/routes/transfer/(components)/transfer-form.svelte

-5
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,6 @@ let hopChain = derived(ucs01Configuration, $ucs01Configuration => {
200200
return chains.find(c => c.chain_id === $ucs01Configuration.hopChainId) ?? null
201201
})
202202
203-
$: {
204-
console.info($ucs01Configuration)
205-
console.info($hopChain)
206-
}
207-
208203
const transfer = async () => {
209204
if (!$assetSymbol) return toast.error("Please select an asset")
210205
if (!$asset) return toast.error(`Error finding asset ${$assetSymbol}`)

0 commit comments

Comments
 (0)