utils.ts 117 B

123
  1. export function isSoloRoute(path: string): boolean {
  2. return /(d-solo|dashboard-solo)/.test(path?.toLowerCase());
  3. }