From c3a6612ec595effb0df1199a653f2b378c2a3b25 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 18 Oct 2024 22:28:06 +0530 Subject: [PATCH] feat: set width to 1150 --- src/components/organisms/BrowserContent.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/organisms/BrowserContent.tsx b/src/components/organisms/BrowserContent.tsx index 1df71474..143eca7c 100644 --- a/src/components/organisms/BrowserContent.tsx +++ b/src/components/organisms/BrowserContent.tsx @@ -7,6 +7,7 @@ import { BrowserTabs } from "../molecules/BrowserTabs"; import { useSocketStore } from "../../context/socket"; import { getCurrentTabs, getCurrentUrl, interpretCurrentRecording } from "../../api/recording"; import { Box } from '@mui/material'; +import { InterpretationLog } from "../molecules/InterpretationLog"; // TODO: Tab !show currentUrl after recordingUrl global state export const BrowserContent = () => { @@ -15,6 +16,7 @@ export const BrowserContent = () => { const [tabs, setTabs] = useState(['current']); const [tabIndex, setTabIndex] = React.useState(0); + const [showOutputData, setShowOutputData] = useState(false); const handleChangeIndex = useCallback((index: number) => { setTabIndex(index); @@ -115,7 +117,7 @@ export const BrowserContent = () => { }, []) return ( -
+
{ /> +
); }