Skip to content

Commit 09c5aa9

Browse files
committed
title change
1 parent e9a2f0b commit 09c5aa9

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

public/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>cøsmwasm devtøøls</title>
27+
<title>cosmwasm devtools</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

src/features/accounts/accountsSlice.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ export const sendCoins = createAsyncThunk(
221221
const config = customConfig ?? state.connection.config;
222222
const senderAccount = state.accounts.accountList[sender];
223223

224-
console.log(sender, senderAccount);
225224
if (!sender) {
226225
throw new Error("No account selected");
227226
}
@@ -238,6 +237,13 @@ export const sendCoins = createAsyncThunk(
238237
},
239238
];
240239

240+
dispatch(
241+
pushMessage({
242+
status: "neutral",
243+
message: "Sending coins...",
244+
})
245+
);
246+
241247
const { code } = await client.sendTokens(
242248
sender,
243249
recipient,

0 commit comments

Comments
 (0)