Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 14576f7
Author: Korbinian <KorbinianK@users.noreply.github.com>
Date:   Wed Apr 24 14:18:40 2024 +0200

    feat(bridge-ui): remove two step and change gasLimit (#16765)
  • Loading branch information
KorbinianK committed Apr 24, 2024
1 parent cfc4e7c commit 41b44d9
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,7 @@
break;
case err instanceof ContractFunctionExecutionError:
console.error(err);
if (err.message.includes('B_INVOCATION_TOO_EARLY')) {
errorToast({
title: $t('bridge.errors.claim.too_early.title'),
message: $t('bridge.errors.claim.too_early.message'),
});
} else if (err.message.includes('B_NOT_RECEIVED')) {
if (err.message.includes('B_NOT_RECEIVED')) {
errorToast({
title: $t('bridge.errors.claim.not_received.title'),
message: $t('bridge.errors.claim.not_received.message'),
Expand Down

0 comments on commit 41b44d9

Please sign in to comment.