diff --git a/web/src/features/dev/debug/menu.ts b/web/src/features/dev/debug/menu.ts index ad8a91a..29a5b63 100644 --- a/web/src/features/dev/debug/menu.ts +++ b/web/src/features/dev/debug/menu.ts @@ -14,6 +14,7 @@ export const debugMenu = () => { label: 'Option 2', icon: 'basket-shopping', description: 'Tooltip description 1', + checked: true, }, { label: 'Vehicle class', diff --git a/web/src/features/menu/list/CustomCheckbox.tsx b/web/src/features/menu/list/CustomCheckbox.tsx index a2af255..1a28e0c 100644 --- a/web/src/features/menu/list/CustomCheckbox.tsx +++ b/web/src/features/menu/list/CustomCheckbox.tsx @@ -4,33 +4,33 @@ const CustomCheckbox: React.FC<{ checked: boolean }> = ({ checked }) => { const { getCheckboxProps, getInputProps, htmlProps } = useCheckbox(); return ( {checked && ( - - + + )} - ) + ); }; export default CustomCheckbox;