Skip to content

Commit

Permalink
Add tabIndex to disable tap-to-search
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Oct 12, 2023
1 parent 88588d4 commit b5f0dfa
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ const ExpenseCategory = memo(function ExpenseCategory({
<View style={{ flex: 1 }}>
<Text
role="button"
tabIndex={-1}
style={{
...styles.smallText,
...styles.underlinedText,
Expand Down Expand Up @@ -574,6 +575,7 @@ const ExpenseGroupTotals = memo(function ExpenseGroupTotals({
<View style={{ flex: 1 }}>
<Text
role="button"
tabIndex={-1}
style={{
...styles.smallText,
...styles.underlinedText,
Expand Down Expand Up @@ -794,6 +796,7 @@ const IncomeGroupTotals = memo(function IncomeGroupTotals({
<View>
<Text
role="button"
tabIndex={-1}
style={{
...styles.smallText,
...nameTextStyle,
Expand Down Expand Up @@ -954,6 +957,7 @@ const IncomeCategory = memo(function IncomeCategory({
<View>
<Text
role="button"
tabIndex={-1}
style={{
...styles.smallText,
...nameTextStyle,
Expand Down

0 comments on commit b5f0dfa

Please sign in to comment.