Skip to content

Commit

Permalink
fix: using correct menu open variable
Browse files Browse the repository at this point in the history
  • Loading branch information
zstix committed Apr 27, 2020
1 parent dd6346d commit 6a47976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/HamburgerMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './HamburgerMenu.scss';

const HamburgerMenu = ({ toggle, isOpen }) => (
<button
aria-expanded={open}
aria-expanded={isOpen}
aria-label="Mobile Menu"
type="button"
className={cx('HamburgerMenu', { HamburgerMenu__open: isOpen })}
Expand Down

0 comments on commit 6a47976

Please sign in to comment.