Skip to content

Commit

Permalink
[#176240699] fix wrong isLoading
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziofff committed Dec 28, 2020
1 parent 56d44f0 commit f297755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/screens/wallet/WalletHomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ class WalletHomeScreen extends React.PureComponent<Props, State> {
if (
this.props.allActiveBonus.length === 0 ||
this.props.allActiveBonus.every(ab => isStrictSome(ab)) ||
pot.isLoading(this.props.bpdActiveBonus)
pot.isSome(this.props.bpdActiveBonus)
) {
return "refresh";
}
Expand Down

0 comments on commit f297755

Please sign in to comment.