Skip to content

Commit

Permalink
disable ecash for now
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Nov 13, 2024
1 parent efc72f3 commit da69898
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/SendDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<div class="col-12">
<q-btn
outline
disabled
color="primary"
rounded
class="q-py-md q-px-xl"
Expand Down Expand Up @@ -53,6 +52,7 @@ import { useUiStore } from "src/stores/ui";
import { useWalletStore } from "src/stores/wallet";
import { useCameraStore } from "src/stores/camera";
import { useSendTokensStore } from "src/stores/sendTokensStore";
import { notifyWarning } from "src/js/notify";
export default defineComponent({
name: "SendDialog",
Expand Down Expand Up @@ -97,6 +97,10 @@ export default defineComponent({
this.showSendDialog = false;
},
showSendTokensDialog: function () {
notifyWarning(
"Sending ecash tokens is currently disabled due to a bug. We are working on a fix."
);
return;
console.log("##### showSendTokensDialog");
this.sendData.tokens = "";
this.sendData.tokensBase64 = "";
Expand Down

0 comments on commit da69898

Please sign in to comment.