From 544a06964db4cee60154922b41d16e859bc88d6f Mon Sep 17 00:00:00 2001
From: Ajay Bura <32841439+ajbura@users.noreply.github.com>
Date: Sat, 16 Aug 2025 17:02:09 +0530
Subject: [PATCH] Hide block user button for own profile (#2439)
---
src/app/components/user-profile/UserRoomProfile.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/app/components/user-profile/UserRoomProfile.tsx b/src/app/components/user-profile/UserRoomProfile.tsx
index 9f8985a..e92d909 100644
--- a/src/app/components/user-profile/UserRoomProfile.tsx
+++ b/src/app/components/user-profile/UserRoomProfile.tsx
@@ -124,8 +124,8 @@ export function UserRoomProfile({ userId }: UserRoomProfileProps) {
{server && }
{creator ? : }
-
-
+ {userId !== myUserId && }
+ {userId !== myUserId && }
{ignored && }
--
2.34.1