@@ -80,7 +80,7 @@ function OrganizationSelectorTrigger({
8080 >
8181 < div className = "flex w-full items-center justify-between" >
8282 < div className = "flex items-center gap-3" >
83- < div className = "rounded shadow-sm " >
83+ < div className = "rounded" >
8484 < Avatar className = "h-5 w-5" >
8585 < AvatarImage
8686 alt = { activeOrganization ?. name || 'Personal' }
@@ -165,7 +165,7 @@ export function OrganizationSelector() {
165165 < div className = "flex h-12 w-full items-center border-sidebar-border border-b bg-sidebar-accent px-3 py-3" >
166166 < div className = "flex w-full items-center justify-between" >
167167 < div className = "flex items-center gap-3" >
168- < div className = "rounded-lg bg-sidebar/80 p-1.5 shadow-sm ring-1 ring-sidebar-border/50" >
168+ < div className = "rounded-lg bg-sidebar/80 p-1.5 ring-1 ring-sidebar-border/50" >
169169 < Skeleton className = "h-5 w-5 rounded" />
170170 </ div >
171171 < div className = "flex min-w-0 flex-1 flex-col items-start" >
@@ -241,7 +241,7 @@ export function OrganizationSelector() {
241241
242242 { filteredOrganizations && filteredOrganizations . length > 0 && (
243243 < div className = "flex flex-col" >
244- < DropdownMenuSeparator className = "my-1 bg-sidebar-border" />
244+ < DropdownMenuSeparator className = "p-0 m-0 bg-sidebar-border" />
245245 { filteredOrganizations . map ( ( org ) => (
246246 < DropdownMenuItem
247247 className = { cn (
@@ -278,7 +278,7 @@ export function OrganizationSelector() {
278278 </ div >
279279 ) }
280280
281- < DropdownMenuSeparator className = "my-1 bg-sidebar-border" />
281+ < DropdownMenuSeparator className = "p-0 m-0 bg-sidebar-border" />
282282 < DropdownMenuItem
283283 className = "flex cursor-pointer items-center gap-3 px-4 py-2.5 text-sidebar-foreground/70 text-sm transition-colors hover:bg-sidebar-accent/60 hover:text-sidebar-accent-foreground"
284284 onClick = { handleCreateOrganization }
0 commit comments