diff --git a/modules/react/select/stories/examples/RefForwarding.tsx b/modules/react/select/stories/examples/RefForwarding.tsx index e9a2465e87..c07488443d 100644 --- a/modules/react/select/stories/examples/RefForwarding.tsx +++ b/modules/react/select/stories/examples/RefForwarding.tsx @@ -18,7 +18,7 @@ const disabledItems = options.filter(item => item.disabled === true).map(item => export const RefForwarding = () => { const [value, setValue] = React.useState('medium'); - const ref = React.useRef(null); + const ref = React.useRef(null); const handleChange = (event: React.ChangeEvent) => { setValue(event.target.value);