diff --git a/frontend-tools/chapters-editor/client/src/components/EditingTools.tsx b/frontend-tools/chapters-editor/client/src/components/EditingTools.tsx index d3c61c37..f06ee319 100644 --- a/frontend-tools/chapters-editor/client/src/components/EditingTools.tsx +++ b/frontend-tools/chapters-editor/client/src/components/EditingTools.tsx @@ -7,12 +7,10 @@ interface EditingToolsProps { onReset: () => void; onUndo: () => void; onRedo: () => void; - onPlaySegments: () => void; onPlay: () => void; canUndo: boolean; canRedo: boolean; isPlaying?: boolean; - isPlayingSegments?: boolean; } const EditingTools = ({ @@ -20,12 +18,10 @@ const EditingTools = ({ onReset, onUndo, onRedo, - onPlaySegments, onPlay, canUndo, canRedo, isPlaying = false, - isPlayingSegments = false, }: EditingToolsProps) => { const [isSmallScreen, setIsSmallScreen] = useState(false); @@ -55,52 +51,6 @@ const EditingTools = ({