Skip to content

Commit

Permalink
fix: claim fail notice
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Jan 19, 2022
1 parent 47ba0d9 commit 954b342
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/component/ClaimAirdrop/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,12 @@ const ClaimAirdrop: React.FC<Props> = ({ className }) => {
description: data?.message,
});
}
} else {}
} else {
notification.error({
message: 'Woops, something went wrong',
description: err.message,
});
}
})
.finally(() => {
setVisibleLoadingModal(false);
Expand Down

0 comments on commit 954b342

Please sign in to comment.