Skip to content

Commit 60a7033

Browse files
minor fix
1 parent 08443a1 commit 60a7033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TransactionCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default function TransactionCard({ onPress, transaction, unit }: IProps)
9191
return "No description";
9292
}
9393

94-
if (description.length > 100) {
94+
if (description.length > 120) {
9595
return `${description.substring(0, 100)}...`;
9696
}
9797

0 commit comments

Comments
 (0)