From 25230d2ca6248cb640b52642af32d23793bc8564 Mon Sep 17 00:00:00 2001 From: HariharanIT Date: Mon, 25 Nov 2024 18:33:59 +0530 Subject: [PATCH] Updated attendee layout to support spotlight --- layout/AttendeeLayout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/AttendeeLayout.tsx b/layout/AttendeeLayout.tsx index 15b3bf6..a65552a 100644 --- a/layout/AttendeeLayout.tsx +++ b/layout/AttendeeLayout.tsx @@ -9,7 +9,7 @@ import { import {AppRootContext} from '../wrapper/AppRootWrapper'; const AttendeeLayout = ({renderData}) => { - const {defaultContent} = useContent(); + const {defaultContent, spotlightUid} = useContent(); //to get recent host who joined on the call const {hostUid} = useContext(AppRootContext); @@ -33,7 +33,7 @@ const AttendeeLayout = ({renderData}) => { } return ( - + ); };