7dc98df2b6
Drop the Upgrade-to-Business banner, BE sidebar items (Licenses, Shared Credentials, Edge Configurations, Waiting Room, Update & Rollback), BE branding (BE logo/footer), and BE-only routed views (update-schedules, EdgeAutoCreateScript, WaitingRoom, TimeWindowDisplay/Picker). Prune the featureId/feature/BEFeatureID teaser props from shared components (Switch, SwitchField, BoxSelector, TooltipWithChildren, wizard Option) and fold isBE in useUser while preserving CE authorization semantics. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
427 B
TypeScript
18 lines
427 B
TypeScript
import { ContextHelp } from '@@/PageHeader/ContextHelp';
|
|
|
|
import { useHeaderContext } from './HeaderContainer';
|
|
import { NotificationsMenu } from './NotificationsMenu';
|
|
import { UserMenu } from './UserMenu';
|
|
|
|
export function HeaderTitle() {
|
|
useHeaderContext();
|
|
|
|
return (
|
|
<div className="flex items-center">
|
|
<NotificationsMenu />
|
|
<ContextHelp />
|
|
{!window.ddExtension && <UserMenu />}
|
|
</div>
|
|
);
|
|
}
|