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;