Skip to content

Commit

Permalink
Merge pull request #290 from bnb-chain/feat/upperLimit0107
Browse files Browse the repository at this point in the history
chore: Update stargate decimal error msg
  • Loading branch information
Halibao-Lala authored Jan 14, 2025
2 parents 251ffc9 + b817255 commit 6d9c5b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const useGetStargateFees = () => {
if (sendValue.split('.')[1]?.length > maxDecimals) {
dispatch(
setRouteError({
stargate: `The amount exceeds the maximum of ${maxDecimals} decimals`,
stargate: `The send amount must be less than ${maxDecimals} digits`,
}),
);
return { isDisplayError: true };
Expand Down

0 comments on commit 6d9c5b6

Please sign in to comment.