From defe741aba632e58fc526b8ed85e2a13a7a82e0c Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sun, 1 Mar 2026 18:48:38 -0600 Subject: [PATCH] Fix stale screen count and standings description in CLAUDE.md Co-Authored-By: Claude Opus 4.6 --- rust/CLAUDE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/CLAUDE.md b/rust/CLAUDE.md index aa58d74..b7a6dbe 100644 --- a/rust/CLAUDE.md +++ b/rust/CLAUDE.md @@ -34,7 +34,7 @@ src/ ├── api/ # reqwest HTTP client, sync pipeline, CSV importers ├── calc/ # league stats, matchup scoring, score cache, weights ├── db/ # sqlx models, queries, schema -├── screens/ # ratatui screen states (all 6 screens complete) +├── screens/ # ratatui screen states (all 7 screens complete) └── widgets/ # reusable UI components (selector) ``` @@ -53,7 +53,7 @@ src/ - `matchup.rs` — Standalone matchup analysis with sort modes, state cached on nav-away - `lineup.rs` — Standalone lineup builder, save/load/delete with confirmation - `settings.rs` — Config form with TOML save, live team validation, per-field change indicators -- `standings.rs` — League standings with Division and Wild Card tabs, fetched live from API +- `standings.rs` — League standings with Division and Wild Card tabs, DB-cached with background API refresh ## Code Style