forked from baron/baron-sso
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
export function canShowWorksmobileEntry(tenant?: {
|
|
id?: string;
|
|
slug?: string;
|
|
parentId?: string | null;
|
|
}) {
|
|
return tenant?.slug === "hanmac-family" && !tenant.parentId;
|
|
}
|