From 3694c95c334b19b972b856192acc18fc09caf66e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 9 Jan 2025 22:52:20 +0530 Subject: [PATCH] feat: initialContent prop --- src/pages/MainPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/MainPage.tsx b/src/pages/MainPage.tsx index 0087d1b3..052a9d34 100644 --- a/src/pages/MainPage.tsx +++ b/src/pages/MainPage.tsx @@ -31,7 +31,7 @@ export interface ScheduleRunResponse { runId: string; } -export const MainPage = ({ handleEditRecording }: MainPageProps) => { +export const MainPage = ({ handleEditRecording, initialContent }: MainPageProps) => { const { t } = useTranslation(); const [content, setContent] = React.useState('recordings'); const [sockets, setSockets] = React.useState([]);