Skip to content

Commit

Permalink
Fix flickering scroll bar on mobile transaction input (#1782) (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
miqh authored Nov 20, 2023
1 parent f58fae8 commit fb2f712
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class AmountInput extends PureComponent {
...style,
}}
>
<View style={{ overflowY: 'auto' }}>{input}</View>
<View style={{ overflowY: 'auto', overflowX: 'hidden' }}>{input}</View>

{/* <Animated.View
style={{
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/1929.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [miqh]
---

Fix flickering scroll bar that may appear when interacting with the new transaction input amount.

0 comments on commit fb2f712

Please sign in to comment.