Skip to content

Commit

Permalink
Fix flickering scroll bar on mobile transaction input (#1782)
Browse files Browse the repository at this point in the history
  • Loading branch information
miqh committed Nov 19, 2023
1 parent 6527312 commit 995be25
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 995be25

Please sign in to comment.