diff --git a/src/app/(dashboard)/settings/page.tsx b/src/app/(dashboard)/settings/page.tsx index e161ed5c..2fe55d78 100644 --- a/src/app/(dashboard)/settings/page.tsx +++ b/src/app/(dashboard)/settings/page.tsx @@ -3400,12 +3400,12 @@ export default function SettingsPage() { )} {isSuperAdmin && ( <> - {isTeamAdmin && } + {isTeamAdmin && } Auth - + Users @@ -3414,7 +3414,7 @@ export default function SettingsPage() { Teams - + Fleet diff --git a/src/components/app-sidebar.tsx b/src/components/app-sidebar.tsx index c7546c7c..0be61261 100644 --- a/src/components/app-sidebar.tsx +++ b/src/components/app-sidebar.tsx @@ -85,20 +85,23 @@ export function AppSidebar() { return ( - - - - Vector - Flow - - V - - -
+ + {/* Logo row — matches the h-14 main content header for border alignment */} +
+ + + Vector + Flow + + Vf + +
+ + {/* Context selectors */} +
- {/* Collapsed mode: icon buttons with popovers */}
diff --git a/src/components/environment-selector.tsx b/src/components/environment-selector.tsx index 4ec0b2c1..cac0d4e3 100644 --- a/src/components/environment-selector.tsx +++ b/src/components/environment-selector.tsx @@ -75,7 +75,7 @@ export function EnvironmentSelector() { }, [selectedEnvironmentId, systemEnvironment, setIsSystemEnvironment]); if (envsQuery.isLoading) { - return ; + return ; } if (environments.length === 0 && !systemEnvironment) { @@ -94,7 +94,7 @@ export function EnvironmentSelector() { value={selectedEnvironmentId ?? ""} onValueChange={handleEnvironmentChange} > - + diff --git a/src/components/team-selector.tsx b/src/components/team-selector.tsx index 66e4e315..497d4832 100644 --- a/src/components/team-selector.tsx +++ b/src/components/team-selector.tsx @@ -40,24 +40,18 @@ export function TeamSelector() { // Single team — show name only, no dropdown if (teams.length === 1) { return ( -
-
- -
- {teams[0].name} +
+ + {teams[0].name}
); } return (