From 3d97e9a0d8772a9469beb6ec5061e611503cfc2c Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Sat, 9 May 2026 01:43:29 -0700 Subject: [PATCH] refactor(ui): normalize backtest runner action --- web/src/backtest/components/BacktestRunnerPanel.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/web/src/backtest/components/BacktestRunnerPanel.tsx b/web/src/backtest/components/BacktestRunnerPanel.tsx index dbc6a01..b46f8e5 100644 --- a/web/src/backtest/components/BacktestRunnerPanel.tsx +++ b/web/src/backtest/components/BacktestRunnerPanel.tsx @@ -3,6 +3,7 @@ import { BacktestConfigurator } from './BacktestConfigurator'; import { BacktestResultsDashboard } from './BacktestResultsDashboard'; import { runBacktestApi } from '../api'; import type { BacktestRequestPayload, BacktestResult } from '../types'; +import { Button } from '../../components/ui/Primitives'; interface BacktestRunnerPanelProps { profileId?: string; @@ -46,12 +47,14 @@ export const BacktestRunnerPanel: React.FC = ({

Read-only deterministic replay. No broker calls. No production table writes.

{onClose && ( - + )} @@ -74,4 +77,3 @@ export const BacktestRunnerPanel: React.FC = ({ ); }; -