We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af16ba4 commit 8020bfdCopy full SHA for 8020bfd
components/Header/Hamburger.component.jsx
@@ -59,7 +59,7 @@ const Hamburger = () => {
59
id="hamburgersvg"
60
style={showHamburgerHideXAnimation}
61
onClick={() => {
62
- setisExpanded(!isExpanded);
+ setisExpanded(prevExpanded => !prevExpanded);
63
}}
64
className="text-gray-900 fill-current"
65
xmlns="http://www.w3.org/2000/svg"
@@ -73,7 +73,7 @@ const Hamburger = () => {
73
<animated.svg
74
id="xsvg"
75
76
77
78
style={showXHideHamburgerAnimation}
79
0 commit comments