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 ( -
+
{ /> +
); }