79748074

Date: 2025-08-27 14:03:40
Score: 1
Natty:
Report link

Have you tried manually setting the expanded state:

const [expanded, setExpanded] = useState(false);
...

<Navbar 
  expand="lg" 
  expanded={expanded}
  onToggle={() => setExpanded(!expanded)}
  ...
>

and using/setting max-height instead of height in your CSS?

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
Posted by: Nermin