Skip to content

Commit 008965c

Browse files
authored
fix(password generator): fixed syntax error in demo (#11782)
1 parent 7939805 commit 008965c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-core/src/demos/PasswordGenerator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const PasswordGenerator: React.FunctionComponent = () => {
4545
const [isAutocompleteOpen, setIsAutocompleteOpen] = useState<boolean>(false);
4646
const [passwordHidden, setPasswordHidden] = useState<boolean>(true);
4747
const searchInputRef = useRef(null);
48-
const autocompleteRef = .useRef(null);
48+
const autocompleteRef = useRef(null);
4949

5050
useEffect(() => {
5151
window.addEventListener('keydown', handleMenuKeys);

0 commit comments

Comments
 (0)