@@ -5,10 +5,11 @@ import { Button } from "@/components/ui/button";
55import { Command , CommandEmpty , CommandGroup , CommandInput , CommandItem , CommandList } from "@/components/ui/command" ;
66import { DropdownMenu , DropdownMenuContent , DropdownMenuGroup , DropdownMenuSeparator , DropdownMenuTrigger } from "@/components/ui/dropdown-menu" ;
77import { isServiceError } from "@/lib/utils" ;
8- import { CaretSortIcon , CheckIcon , GitHubLogoIcon } from "@radix-ui/react-icons" ;
8+ import { CaretSortIcon , CheckIcon } from "@radix-ui/react-icons" ;
99import { useRouter } from "next/navigation" ;
1010import { useCallback , useMemo , useState } from "react" ;
1111import { OrgCreationDialog } from "./orgCreationDialog" ;
12+ import { OrgIcon } from "./orgIcon" ;
1213
1314
1415interface OrgSelectorDropdownProps {
@@ -106,7 +107,7 @@ export const OrgSelectorDropdown = ({
106107 >
107108 < DropdownMenuTrigger asChild >
108109 < Button variant = "ghost" size = "default" >
109- < GitHubLogoIcon className = "h-5 w-5 mr-1.5" />
110+ < OrgIcon className = "mr-1.5" />
110111 < p className = "font-medium text-sm mr-1" > { activeOrg . name } </ p >
111112 < CaretSortIcon className = "h-5 w-5 font-medium" />
112113 </ Button >
@@ -146,7 +147,7 @@ export const OrgSelectorDropdown = ({
146147 onSelect = { ( ) => onSwitchOrg ( org . id , org . name ) }
147148 >
148149 < div className = "flex flex-row gap-1.5 items-center" >
149- < GitHubLogoIcon className = "h-5 w-5" />
150+ < OrgIcon />
150151 { org . name }
151152 </ div >
152153 { org . id === activeOrgId && (
0 commit comments