mirror of
				https://github.com/lingble/twenty.git
				synced 2025-10-30 20:27:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			207 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			207 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { useLocation } from 'react-router-dom';
 | |
| 
 | |
| export const useIsMenuNavbarDisplayed = () => {
 | |
|   const currentPath = useLocation().pathname;
 | |
|   return currentPath.match(/^\/companies(\/.*)?$/) !== null;
 | |
| };
 | 
