From c4de39bb026e6615218e491fed210ef2e08f2dad Mon Sep 17 00:00:00 2001 From: anoracleofra-code Date: Tue, 10 Mar 2026 04:53:17 -0600 Subject: [PATCH] fix: remove defunct FLIR/NVG/CRT style presets, keep only DEFAULT and SATELLITE Co-Authored-By: Claude Opus 4.6 --- frontend/src/app/page.tsx | 2 +- frontend/src/components/ChangelogModal.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx index 34e75b3..851db6c 100644 --- a/frontend/src/app/page.tsx +++ b/frontend/src/app/page.tsx @@ -161,7 +161,7 @@ export default function Dashboard() { }); const [activeStyle, setActiveStyle] = useState('DEFAULT'); - const stylesList = ['DEFAULT', 'SATELLITE', 'FLIR', 'NVG', 'CRT']; + const stylesList = ['DEFAULT', 'SATELLITE']; const cycleStyle = () => { setActiveStyle((prev) => { diff --git a/frontend/src/components/ChangelogModal.tsx b/frontend/src/components/ChangelogModal.tsx index fd2dbb1..89c2a21 100644 --- a/frontend/src/components/ChangelogModal.tsx +++ b/frontend/src/components/ChangelogModal.tsx @@ -41,7 +41,7 @@ const NEW_FEATURES = [ { icon: , title: "SATELLITE Style Preset", - desc: "STYLE button now cycles: DEFAULT → SATELLITE → FLIR → NVG → CRT. SATELLITE auto-enables high-res imagery.", + desc: "STYLE button now cycles: DEFAULT → SATELLITE. SATELLITE auto-enables high-res imagery.", color: "cyan", }, ];