Skip to content

Commit

Permalink
fix: allow scrolling on receive bitcoin (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleSamtoshi authored Jul 6, 2022
1 parent 1760370 commit e679e76
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions app/screens/receive-bitcoin-screen/receive-bitcoin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const CurrencyType = {
const styles = EStyleSheet.create({
container: {
flexDirection: "column",
// padding: 10,
},
tabRow: {
flexDirection: "row",
Expand Down Expand Up @@ -103,10 +102,8 @@ const ReceiveBitcoin = () => {
</View>
</TouchableWithoutFeedback>
</View>
<View style={styles.screenContainer}>
{receiveCurrency === CurrencyType.USD && <ReceiveUsd />}
{receiveCurrency === CurrencyType.BTC && <ReceiveBtc />}
</View>
{receiveCurrency === CurrencyType.USD && <ReceiveUsd />}
{receiveCurrency === CurrencyType.BTC && <ReceiveBtc />}
</View>
)
}
Expand Down

0 comments on commit e679e76

Please sign in to comment.