Files
twenty/packages/twenty-front/src/modules/navigation/hooks/useIsSettingsPage.ts
2023-12-10 18:10:54 +01:00

5 lines
146 B
TypeScript

import { useLocation } from 'react-router-dom';
export const useIsSettingsPage = () =>
useLocation().pathname.match(/\/settings\//g) !== null;