diff --git a/frontend/src/components/tools/shared/ReviewToolStep.tsx b/frontend/src/components/tools/shared/ReviewToolStep.tsx index f296ab391..4b82f914e 100644 --- a/frontend/src/components/tools/shared/ReviewToolStep.tsx +++ b/frontend/src/components/tools/shared/ReviewToolStep.tsx @@ -7,14 +7,14 @@ import ResultsPreview from './ResultsPreview'; import { SuggestedToolsSection } from './SuggestedToolsSection'; import { ToolOperationHook } from '../../../hooks/tools/shared/useToolOperation'; -export interface ReviewToolStepProps { +export interface ReviewToolStepProps { isVisible: boolean; operation: ToolOperationHook; title?: string; onFileClick?: (file: File) => void; } -export function createReviewToolStep( +export function createReviewToolStep( createStep: (title: string, props: any, children?: React.ReactNode) => React.ReactElement, props: ReviewToolStepProps ): React.ReactElement {