Skip to content

Commit

Permalink
typecheck fix + changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
henri-ly committed Nov 17, 2022
1 parent d717db0 commit 32633f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/beige-moles-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": minor
---

Fix redelegation cosmos previous screen bug
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
SectionListData,
SectionListRenderItemInfo,
} from "react-native";
import BigNumber from "bignumber.js";
import { SafeAreaView } from "react-native-safe-area-context";
import { Trans } from "react-i18next";
import { useSelector } from "react-redux";
Expand Down Expand Up @@ -124,7 +125,7 @@ function RedelegationSelectValidator({ navigation, route }: Props) {
transaction,
validatorSrc,
validator,
max: max ?? 0,
max: max ?? new BigNumber(0),
status,
nextScreen: ScreenName.CosmosRedelegationSelectDevice,
});
Expand Down

0 comments on commit 32633f7

Please sign in to comment.