From 6a9dde596ae25c0dd2fa97b0cf354143fbc5b5ff Mon Sep 17 00:00:00 2001 From: atiteux Date: Mon, 22 Jan 2024 11:17:40 +0100 Subject: [PATCH] feat(pencil): fix with yarn lint:fix --- stories/useStateList.story.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);