From e2cc6d8c8dbb0db1a0f51598677afc2df2a5f0c6 Mon Sep 17 00:00:00 2001 From: Connor Yoh Date: Fri, 15 Aug 2025 14:11:07 +0100 Subject: [PATCH] missing one --- frontend/src/components/tools/shared/ToolStep.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/tools/shared/ToolStep.tsx b/frontend/src/components/tools/shared/ToolStep.tsx index 26f8871a0..2bbd508c4 100644 --- a/frontend/src/components/tools/shared/ToolStep.tsx +++ b/frontend/src/components/tools/shared/ToolStep.tsx @@ -179,7 +179,7 @@ export function createToolSteps() { return createFilesToolStep(create, props); }; - const createReviewStep = (props: ReviewToolStepProps): React.ReactElement => { + const createReviewStep = (props: ReviewToolStepProps): React.ReactElement => { return createReviewToolStep(create, props); };