Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-tsx committed Dec 23, 2024
1 parent 14b6237 commit 1314162
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/pages/TempleTapAirdrop/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export const TempleTapAirdropPage = memo(() => {
reset();
} catch (error: any) {
if (isAxiosError(error) && error.response?.data.code === 'ACCOUNT_CONFIRMED') {
return void setConfirmed(true);
setConfirmed(true);
return;
}

setError('username', 'submit-error', error?.response.data?.message || 'Something went wrong...');
Expand Down

0 comments on commit 1314162

Please sign in to comment.