From 0be5fb97328e339bb681e0cce990c7ad5a015239 Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Fri, 9 May 2025 09:35:13 -0500 Subject: [PATCH] remove unused params --- src/app/pages/client/ClientLayout.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app/pages/client/ClientLayout.tsx b/src/app/pages/client/ClientLayout.tsx index 62ba0e05..6eb038d8 100644 --- a/src/app/pages/client/ClientLayout.tsx +++ b/src/app/pages/client/ClientLayout.tsx @@ -9,9 +9,8 @@ import { SmallWidget } from '../../features/room/SmallWidget'; type ClientLayoutProps = { nav: ReactNode; - children: ReactNode; }; -export function ClientLayout({ nav, children }: ClientLayoutProps) { +export function ClientLayout({ nav }: ClientLayoutProps) { const { activeCallRoomId } = useCallState(); const iframeRef = useRef(null); const widgetApiRef = useRef(null); @@ -53,11 +52,7 @@ export function ClientLayout({ nav, children }: ClientLayoutProps) {