Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- import { isPoWorkbenchRoute } from "@/app/(main)/isPoWorkbenchRoute";
-
- /** MTMS route board (`/settings/shop/board`). */
- export function isRouteBoardRoute(pathname: string | null): boolean {
- if (!pathname) {
- return false;
- }
- return pathname === "/settings/shop/board";
- }
-
- /** Routes that use the full viewport under the AppBar (no main padding / min-h-screen gap). */
- export function isFullBleedMainRoute(pathname: string | null): boolean {
- return isPoWorkbenchRoute(pathname) || isRouteBoardRoute(pathname);
- }
|