Skip to content

Commit

Permalink
fix: correct post-merge FT title display issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AricRedemption committed Apr 12, 2024
1 parent ffdf495 commit b103257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/wallet/components/TransactionResultModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const toResultTxs = async (txId: string) => {
<ExclamationTriangleIcon class="h-5 w-5 text-yellow-500"></ExclamationTriangleIcon>
</div>
</template>
<template #title v-if="(result && result.status === 'success') || result?.status === 'successTxs'">
<template #title v-if="result && (result.status === 'success' || result.status === 'successTxs')">
<div class="flex flex-col justify-center items-center gap-[18px]">
<img class="w-[54px] h-[54px]" :src="SuccessIcon" alt="" />
<span class="text-black-primary">Sent Successfully</span>
Expand Down

0 comments on commit b103257

Please sign in to comment.