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}