Skip to content

Commit 660c9d9

Browse files
authored
fix(activity): #2264 fix render error (#2307)
1 parent 3fa1197 commit 660c9d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/screens/Activity/ActivitySavings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const ActivitySavings = ({
4848
navigation.navigate('TransferRoot', { screen: 'SpendingIntro' });
4949
};
5050

51-
const canTransfer = onchainBalance && !isGeoBlocked;
51+
const canTransfer = !!onchainBalance && !isGeoBlocked;
5252

5353
return (
5454
<ThemedView style={styles.root}>

0 commit comments

Comments
 (0)