diff --git a/stories/useStateList.story.tsx b/stories/useStateList.story.tsx index 3ca0377dd6..938eb0d5b7 100644 --- a/stories/useStateList.story.tsx +++ b/stories/useStateList.story.tsx @@ -7,7 +7,8 @@ import ShowDocs from './util/ShowDocs'; const stateSet = ['first', 'second', 'third', 'fourth', 'fifth']; const Demo = () => { - const { state, prev, next, setStateAt, setState, currentIndex, isFirst, isLast } = useStateList(stateSet); + const { state, prev, next, setStateAt, setState, currentIndex, isFirst, isLast } = + useStateList(stateSet); const indexInput = useRef(null); const stateInput = useRef(null);