diff --git a/src/components/molecules/NavBar.tsx b/src/components/molecules/NavBar.tsx index 1c0e8981..d60faccc 100644 --- a/src/components/molecules/NavBar.tsx +++ b/src/components/molecules/NavBar.tsx @@ -11,12 +11,11 @@ import { useNavigate } from 'react-router-dom'; import { AuthContext } from '../../context/auth'; interface NavBarProps { - newRecording: () => void; recordingName: string; isRecording: boolean; } -export const NavBar: React.FC = ({ newRecording, recordingName, isRecording }) => { +export const NavBar: React.FC = ({ recordingName, isRecording }) => { const { notify, browserId, setBrowserId, recordingUrl } = useGlobalInfoStore(); const { state, dispatch } = useContext(AuthContext);