;
export const SettingsDesktopNav = ({ className, ...props }: SettingsDesktopNavProps) => {
const { pathname } = useLocation();
const { organisations } = useSession();
const isPersonalLayoutMode = isPersonalLayout(organisations);
return (
{isPersonalLayoutMode && (
<>
{IS_BILLING_ENABLED() && (
)}
>
)}
);
};