From 08301cee7d097f90878d54e2d42e315b60fcd566 Mon Sep 17 00:00:00 2001
From: Ajay Bura <32841439+ajbura@users.noreply.github.com>
Date: Sat, 23 Aug 2025 17:06:49 +0530
Subject: [PATCH] revert: show invite reason as compact message
---
src/app/pages/client/inbox/Invites.tsx | 56 +++++++++++---------------
1 file changed, 23 insertions(+), 33 deletions(-)
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}
+
+ )}
+
);
}