open profile view on left side in member drawer

This commit is contained in:
Ajay Bura 2025-08-09 16:23:20 +05:30
parent 2f77b3fd85
commit a44cefedcf
4 changed files with 10 additions and 8 deletions

View file

@ -147,7 +147,7 @@ export function MembersDrawer({ room, members }: MembersDrawerProps) {
const btn = evt.currentTarget as HTMLButtonElement;
const userId = btn.getAttribute('data-user-id');
if (!userId) return;
openUserRoomProfile(room.roomId, space?.roomId, userId, btn.getBoundingClientRect());
openUserRoomProfile(room.roomId, space?.roomId, userId, btn.getBoundingClientRect(), 'Left');
};
return (