diff --git a/src/Explorer/Panes/RightPaneForm/RightPaneForm.tsx b/src/Explorer/Panes/RightPaneForm/RightPaneForm.tsx index e9d71ade8..a444db02d 100644 --- a/src/Explorer/Panes/RightPaneForm/RightPaneForm.tsx +++ b/src/Explorer/Panes/RightPaneForm/RightPaneForm.tsx @@ -1,4 +1,3 @@ -import { useNotificationConsole } from "hooks/useNotificationConsole"; import React, { FunctionComponent, ReactNode } from "react"; import { PanelFooterComponent } from "../PanelFooterComponent"; import { PanelInfoErrorComponent } from "../PanelInfoErrorComponent"; @@ -23,12 +22,9 @@ export const RightPaneForm: FunctionComponent = ({ isSubmitButtonDisabled = false, children, }: RightPaneFormProps) => { - const expandConsole = useNotificationConsole((state) => state.expandConsole); const handleOnSubmit = (event: React.FormEvent) => { event.preventDefault(); - console.log("right pane form clicked"); onSubmit(); - expandConsole(); }; return (