From 8c6a6265eb4809b882b72f6b015ad72504969d2e Mon Sep 17 00:00:00 2001 From: GigiaJ Date: Thu, 1 May 2025 16:56:58 -0500 Subject: [PATCH] add call as a param to pass --- src/app/components/room-avatar/RoomAvatar.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/components/room-avatar/RoomAvatar.tsx b/src/app/components/room-avatar/RoomAvatar.tsx index 23f3998d..60de8346 100644 --- a/src/app/components/room-avatar/RoomAvatar.tsx +++ b/src/app/components/room-avatar/RoomAvatar.tsx @@ -46,10 +46,11 @@ export const RoomIcon = forwardRef< Omit, 'src'> & { joinRule: JoinRule; space?: boolean; + call?: boolean; } ->(({ joinRule, space, ...props }, ref) => ( +>(({ joinRule, space, call, ...props }, ref) => (