diff --git a/src/components/Settings/AppCardWidthSelector.tsx b/src/components/Settings/AppCardWidthSelector.tsx index 5d1b9a066..f2f30ff01 100644 --- a/src/components/Settings/AppCardWidthSelector.tsx +++ b/src/components/Settings/AppCardWidthSelector.tsx @@ -6,12 +6,12 @@ export function AppCardWidthSelector() { const { config, setConfig } = useConfig(); const MARKS = [ - { value: 1, label: '1' }, - { value: 2, label: '2' }, - { value: 3, label: '3' }, - { value: 4, label: '4' }, - { value: 6, label: '6' }, - { value: 12, label: '12' }, + { value: 0.8 }, + { value: 1 }, + { value: 1.2 }, + { value: 1.4 }, + { value: 1.6 }, + { value: 2 }, ]; const setappCardWidth = (appCardWidth: number) => { @@ -28,10 +28,11 @@ export function AppCardWidthSelector() { App Width setappCardWidth(value)}