From eb6c1d8f7af472f8ea9b7227c5360d3fb68b1892 Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Mon, 4 May 2026 17:15:47 -0700 Subject: [PATCH] docs(B7): mark editor ref cleanup complete --- docs/AUDIT_REDESIGN.md | 2 +- docs/COMPLETION_CHECKLIST.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/AUDIT_REDESIGN.md b/docs/AUDIT_REDESIGN.md index 85e5dfe..f5a3827 100644 --- a/docs/AUDIT_REDESIGN.md +++ b/docs/AUDIT_REDESIGN.md @@ -32,7 +32,7 @@ Status: โฌœ open ยท ๐ŸŸฆ in PR ยท โœ… fixed (commit hash on the right). | B4 | `TickerHeader` "as of" timestamp uses `new Date()` (always = now). Should use the latest bar timestamp. | ๐ŸŸก | โœ… | 311d79c | | B5 | `QuickStats` reads RSI/EMA only from `botState.symbols[symbol].indicators`. The bot only computes these for symbols it actively tracks โ†’ user-searched tickers always show `โ€”`. Need an indicator service or compute from bars client-side. | ๐ŸŸ  | โœ… | 27b3d1a | | B6 | `CodeStrategyEditor` "Save" button writes to `localStorage` only, then shows "Saved!". Misleading โ€” no persistence. | ๐ŸŸ  | โœ… | da79682 | -| B7 | `CodeStrategyEditor` defines `editorRef` but never uses it. | ๐ŸŸข | โฌœ | | +| B7 | `CodeStrategyEditor` defines `editorRef` but never uses it. | ๐ŸŸข | โœ… | 1fd1bf3 | | B8 | `VisualRuleBuilder` exposes `onBacktest` prop but `ResearchView` doesn't pass one โ€” backtest button never appears. | ๐ŸŸก | โฌœ | | | B9 | `ResearchView` "Strategies" tab still shows the legacy `MyStrategiesTab`; visual/code-saved strategies don't appear there. | ๐ŸŸก | โฌœ | | | B10 | No 404 / catch-all React Router route โ€” invalid paths render blank. | ๐ŸŸก | โฌœ | | diff --git a/docs/COMPLETION_CHECKLIST.md b/docs/COMPLETION_CHECKLIST.md index ffeb7c8..d3e124a 100644 --- a/docs/COMPLETION_CHECKLIST.md +++ b/docs/COMPLETION_CHECKLIST.md @@ -311,7 +311,7 @@ Expected platform result: errors, preserves local draft behavior only as a draft/recovery mechanism, and saved code strategies appear where users expect to find them. -- [ ] `B7` Remove or use unused `editorRef`. +- [x] `B7` Remove or use unused `editorRef`. Implementation: `1fd1bf3`. Acceptance: no dead ref remains, or it powers a concrete behavior such as formatting/focus/save integration.