Add try catch block if user reject a withdraw action
This commit is contained in:
@@ -112,7 +112,7 @@ showInitialItems();
|
||||
|
||||
<template>
|
||||
<div class="blur-container" v-if="loadingWalletTransactions">
|
||||
<SpinnerComponent width="8" height="8" color="white"></SpinnerComponent>
|
||||
<SpinnerComponent width="8" height="8" fillColor="white"></SpinnerComponent>
|
||||
</div>
|
||||
<div class="blur-container" v-if="!loadingWalletTransactions">
|
||||
<div
|
||||
|
||||
@@ -197,7 +197,7 @@ watch(walletAddress, (): void => {
|
||||
<SpinnerComponent
|
||||
width="4"
|
||||
height="4"
|
||||
color="blue-600"
|
||||
fillColor="white"
|
||||
></SpinnerComponent>
|
||||
</div>
|
||||
<div
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
const props = defineProps({
|
||||
width: String,
|
||||
height: String,
|
||||
color: String,
|
||||
fillColor: String,
|
||||
show: Boolean,
|
||||
});
|
||||
|
||||
@@ -11,7 +11,7 @@ const getCustomClass = () => {
|
||||
return [
|
||||
`w-${props.width}`,
|
||||
`h-${props.height}`,
|
||||
`fill-${props.color}`,
|
||||
`fill-${props.fillColor}`,
|
||||
"text-gray-200",
|
||||
"animate-spin",
|
||||
"dark:text-gray-600",
|
||||
|
||||
Reference in New Issue
Block a user