diff --git a/src/components/Settings/AppCardWidthSelector.tsx b/src/components/Settings/AppCardWidthSelector.tsx index f2f30ff01..945778e67 100644 --- a/src/components/Settings/AppCardWidthSelector.tsx +++ b/src/components/Settings/AppCardWidthSelector.tsx @@ -5,15 +5,6 @@ import { useConfig } from '../../tools/state'; export function AppCardWidthSelector() { const { config, setConfig } = useConfig(); - const MARKS = [ - { value: 0.8 }, - { value: 1 }, - { value: 1.2 }, - { value: 1.4 }, - { value: 1.6 }, - { value: 2 }, - ]; - const setappCardWidth = (appCardWidth: number) => { setConfig({ ...config, @@ -33,7 +24,6 @@ export function AppCardWidthSelector() { step={0.2} min={0.8} max={2} - marks={MARKS} styles={{ markLabel: { fontSize: 'xx-small' } }} onChange={(value) => setappCardWidth(value)} />