diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index c21a2b85..1c0e8981 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -18,10 +18,9 @@ interface NavBarProps { export const NavBar: React.FC = ({ newRecording, recordingName, isRecording }) => { - const { notify, browserId, setBrowserId, recordingLength, recordingUrl, setRecordingUrl } = useGlobalInfoStore(); + const { notify, browserId, setBrowserId, recordingUrl } = useGlobalInfoStore(); const { state, dispatch } = useContext(AuthContext); const { user } = state; - const [isModalOpen, setModalOpen] = useState(false); console.log(`Recording URL: ${recordingUrl}`)