From 2188d2b33f506a6d1ecc9107ca0b1ade14795cc0 Mon Sep 17 00:00:00 2001 From: Pattadon Date: Fri, 1 Nov 2024 15:25:23 +0700 Subject: [PATCH] Refactor RecentFunds component to display only the first two characters of the deal name in the AvatarFallback --- src/components/recent-funds.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/recent-funds.tsx b/src/components/recent-funds.tsx index b078846..1f712e1 100644 --- a/src/components/recent-funds.tsx +++ b/src/components/recent-funds.tsx @@ -48,7 +48,7 @@ export function RecentFunds(props: RecentFundsProps) {
- {(deal.name ?? "").slice(0, 3)} + {(deal.name ?? "").slice(0, 2)}

{deal.name}