@@ -5,10 +5,11 @@ import { Button } from "@/components/ui/button";
5
5
import { Command , CommandEmpty , CommandGroup , CommandInput , CommandItem , CommandList } from "@/components/ui/command" ;
6
6
import { DropdownMenu , DropdownMenuContent , DropdownMenuGroup , DropdownMenuSeparator , DropdownMenuTrigger } from "@/components/ui/dropdown-menu" ;
7
7
import { isServiceError } from "@/lib/utils" ;
8
- import { CaretSortIcon , CheckIcon , GitHubLogoIcon } from "@radix-ui/react-icons" ;
8
+ import { CaretSortIcon , CheckIcon } from "@radix-ui/react-icons" ;
9
9
import { useRouter } from "next/navigation" ;
10
10
import { useCallback , useMemo , useState } from "react" ;
11
11
import { OrgCreationDialog } from "./orgCreationDialog" ;
12
+ import { OrgIcon } from "./orgIcon" ;
12
13
13
14
14
15
interface OrgSelectorDropdownProps {
@@ -106,7 +107,7 @@ export const OrgSelectorDropdown = ({
106
107
>
107
108
< DropdownMenuTrigger asChild >
108
109
< Button variant = "ghost" size = "default" >
109
- < GitHubLogoIcon className = "h-5 w-5 mr-1.5" />
110
+ < OrgIcon className = "mr-1.5" />
110
111
< p className = "font-medium text-sm mr-1" > { activeOrg . name } </ p >
111
112
< CaretSortIcon className = "h-5 w-5 font-medium" />
112
113
</ Button >
@@ -146,7 +147,7 @@ export const OrgSelectorDropdown = ({
146
147
onSelect = { ( ) => onSwitchOrg ( org . id , org . name ) }
147
148
>
148
149
< div className = "flex flex-row gap-1.5 items-center" >
149
- < GitHubLogoIcon className = "h-5 w-5" />
150
+ < OrgIcon />
150
151
{ org . name }
151
152
</ div >
152
153
{ org . id === activeOrgId && (
0 commit comments