diff --git a/src/app/pages/client/inbox/Invites.tsx b/src/app/pages/client/inbox/Invites.tsx index af81b35d..e7955454 100644 --- a/src/app/pages/client/inbox/Invites.tsx +++ b/src/app/pages/client/inbox/Invites.tsx @@ -309,41 +309,31 @@ function InviteCard({ - - - - From: {invite.senderId} - - - {typeof invite.inviteTs === 'number' && invite.inviteTs !== 0 && ( - - - )} - - {invite.reason && ( - - - - - {invite.senderName} - - - - {invite.reason} + + + + + From: {invite.senderId} - - )} + {typeof invite.inviteTs === 'number' && invite.inviteTs !== 0 && ( + + + )} + + {invite.reason && ( + + Reason: {invite.reason} + + )} + ); }