From 973e6704e8eb791eb15c5a3aeb14b02e19c136ab Mon Sep 17 00:00:00 2001 From: Connor Yoh Date: Fri, 15 Aug 2025 13:57:18 +0100 Subject: [PATCH] Fix default type --- frontend/src/components/tools/shared/ReviewToolStep.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {