Skip to content

Commit

Permalink
hide suggestions when no suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdenio committed Feb 7, 2024
1 parent 70de76e commit 8cee301
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/RenameTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ export default function RenameTransactionPage({
</Text>
</View>
) : (
Array.isArray(memoSuggestions) && (
Array.isArray(memoSuggestions) &&
memoSuggestions.length > 0 && (
<View>
<Text
style={{
Expand Down

0 comments on commit 8cee301

Please sign in to comment.