From d954ea52ae68c7f4da2aa2f5ba86bced21c467a2 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 7 Apr 2026 16:30:58 -0400 Subject: [PATCH] tidy: remove redundant status text from SwitchFeature {isEnabled ? '' : 'False'} rendered an empty string when on and the word 'False' when off. The Switch widget already communicates its state visually, so the text was redundant in both cases. Co-Authored-By: Claude Sonnet 4.6 --- SwitchFeature.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/SwitchFeature.tsx b/SwitchFeature.tsx index fe3cea2..403155a 100644 --- a/SwitchFeature.tsx +++ b/SwitchFeature.tsx @@ -27,10 +27,6 @@ export default function SwitchFeature({ isEnabled, setIsEnabled }: SwitchFeature value={isEnabled} /> - - {isEnabled ? '' : 'False'} - - {/* Conditional image */} {isEnabled && (