FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
257 B

  1. /** True when the active route is PO Workbench (or nested). */
  2. export function isPoWorkbenchRoute(pathname: string | null): boolean {
  3. if (!pathname) {
  4. return false;
  5. }
  6. return pathname === "/po/workbench" || pathname.startsWith("/po/workbench/");
  7. }