fix some bugs with the org selector

This commit is contained in:
Braydon 2024-09-19 00:51:46 -04:00
parent c92ab6d41c
commit 4e02e75d7f

@ -114,6 +114,7 @@ const OrganizationSelector = (): ReactElement => {
(organization: Organization, index: number) => (
<CommandItem
key={index}
className="flex justify-between"
value={organization.name}
onSelect={(currentValue: string) =>
selectOrganization(
@ -125,11 +126,11 @@ const OrganizationSelector = (): ReactElement => {
)
}
>
{selected?.snowflake ===
{organization.name}
{organization.snowflake ===
selectedOrganization && (
<CheckIcon className="mr-2 w-4 h-4" />
)}
{organization.name}
</CommandItem>
)
)}