chore: remove unused imports

This commit is contained in:
karishmas6
2024-10-21 01:12:27 +05:30
parent 5433f0b15c
commit ec8144fb17

View File

@@ -18,10 +18,9 @@ interface NavBarProps {
export const NavBar: React.FC<NavBarProps> = ({ 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}`)