Skip to content

Commit

Permalink
[Docs]: set default value for multi switch example
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyManetov committed Nov 25, 2024
1 parent e602250 commit 9f5114e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/docs/_examples/multiSwitch/Basic.example.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import css from './BasicExample.module.scss';

export default function BasicExample() {
const [value, onValueChange] = useState('on');
const [userType, userTypeOnValueChange] = useState(2);
const [userType, userTypeOnValueChange] = useState();
const [view, setView] = useState(1);
const [filter, setFilter] = useState(2);

Expand Down

0 comments on commit 9f5114e

Please sign in to comment.