From c3f985b96b1c769e4461af44c0da8c8bce2e1b83 Mon Sep 17 00:00:00 2001 From: Joseph Hale Date: Fri, 15 Aug 2025 23:55:05 -0700 Subject: [PATCH] chore: Remove dead, commented code --- src/components/settings/SettingRange.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/settings/SettingRange.tsx b/src/components/settings/SettingRange.tsx index 7cb6816..60914b0 100644 --- a/src/components/settings/SettingRange.tsx +++ b/src/components/settings/SettingRange.tsx @@ -14,7 +14,6 @@ import debounce from 'lodash/debounce'; type Props = { title: string; onValueChange: (value: number) => void; - // onValueSet: (value: number) => void; subtitle?: string; caption?: string; initialValue?: number; @@ -47,7 +46,6 @@ const SettingRange = (props: Props) => { { }; const styles = StyleSheet.create({ - caption: { - color: 'white', - }, + caption: { color: 'white' }, }); export default SettingRange; -- 2.51.2