Skip to content

Commit 949b57f

Browse files
committed
fix awaitingmodal
1 parent 9ef891b commit 949b57f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/modals/AwaitingModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const handleClose = () => {
119119
<Flex
120120
direction="column"
121121
justify="between"
122-
:class="[$style.bg, !isFound && $style.sending, tx?.status === 'success' ? $style.success : $style.failed]"
122+
:class="[$style.bg, !isFound ? $style.sending : tx.status === 'success' ? $style.success : $style.failed]"
123123
>
124124
<Flex v-for="i in 8" align="center" justify="between">
125125
<div
@@ -153,7 +153,7 @@ const handleClose = () => {
153153
<Flex
154154
direction="column"
155155
justify="between"
156-
:class="[$style.bg, !isFound && $style.sending, tx?.status === 'success' ? $style.success : $style.failed]"
156+
:class="[$style.bg, !isFound ? $style.sending : tx.status === 'success' ? $style.success : $style.failed]"
157157
>
158158
<Flex v-for="i in 8" align="center" justify="between">
159159
<div

0 commit comments

Comments
 (0)