useHideSidebar.ts14 lines · main
| 1 | import { usePathname } from 'next/navigation' |
| 2 | |
| 3 | export function useHideSidebar() { |
| 4 | const pathname = usePathname() ?? '' |
| 5 | |
| 6 | const shouldHide = |
| 7 | pathname.startsWith('/account') || |
| 8 | pathname.startsWith('/new') || |
| 9 | pathname.startsWith('/support') || |
| 10 | pathname === '/organizations' || |
| 11 | pathname === '/sign-in' |
| 12 | |
| 13 | return shouldHide |
| 14 | } |