From 51e7a98d3f8493a63e285fcc7bb3895a2465f1a8 Mon Sep 17 00:00:00 2001 From: Asis Ferrer Date: Tue, 12 May 2026 00:42:21 +0200 Subject: [PATCH] style: replace string concatenation with template literals --- src/app/(dashboard)/recipients/[recipientId]/page.tsx | 2 +- src/app/(dashboard)/recipients/page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/(dashboard)/recipients/[recipientId]/page.tsx b/src/app/(dashboard)/recipients/[recipientId]/page.tsx index 7f3f6ee..efb2e16 100644 --- a/src/app/(dashboard)/recipients/[recipientId]/page.tsx +++ b/src/app/(dashboard)/recipients/[recipientId]/page.tsx @@ -20,7 +20,7 @@ export default async function RecipientInfoPage({ - {recipient.firstName + " " + recipient.lastName} + {`${recipient.firstName} ${recipient.lastName}`} diff --git a/src/app/(dashboard)/recipients/page.tsx b/src/app/(dashboard)/recipients/page.tsx index d45b071..f361451 100644 --- a/src/app/(dashboard)/recipients/page.tsx +++ b/src/app/(dashboard)/recipients/page.tsx @@ -62,7 +62,7 @@ export default async function RecipientsPage(props: { {recipient.username} - {recipient.firstName + " " + recipient.lastName} + {`${recipient.firstName} ${recipient.lastName}`} {recipient.email} {recipient.phone}