diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 76cdb238..124f76cb 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -21,7 +21,7 @@ export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { const [isSettingsDisplayed, setIsSettingsDisplayed] = React.useState(false); const { lastAction } = useGlobalInfoStore(); - const { handleGetText, handleGetScreenshot } = useActionContext(); + const { getText, getScreenshot, startGetText, stopGetText, startGetScreenshot, stopGetScreenshot } = useActionContext(); const handleChange = (event: React.SyntheticEvent, newValue: string) => { setContent(newValue); @@ -39,6 +39,7 @@ export const RightSidePanel = ({ pairForEdit }: RightSidePanelProps) => { } }, [pairForEdit]) + return ( { : null } - - + + + + ); };