()
| 28 | const [isDarkTheme, setIsDarkTheme] = useState(); |
| 29 | |
| 30 | const toggleDropdown = () => { |
| 31 | setIsOpen(!isOpen); |
| 32 | closeSidebar(); |
| 33 | }; |
| 34 | const closeSidebar = () => { |
| 35 | if (width && width <= 768) { |
| 36 | dispatch(toggleSidebar(false)); |
nothing calls this directly
no test coverage detected