Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
niteshbalusu11 committed Jul 10, 2024
1 parent e9a4960 commit 08443a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TransactionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function TransactionCard({ onPress, transaction, unit }: IProps)
return "No description";
}

if (description.length > 50) {
if (description.length > 100) {
return `${description.substring(0, 100)}...`;
}

Expand Down

0 comments on commit 08443a1

Please sign in to comment.