Skip to content

Commit

Permalink
fix: onboarding role select dropdown text color (#2117)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaryan610 authored Sep 7, 2023
1 parent 39bc975 commit 8ea6dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion space/components/accounts/onboarding-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export const OnBoardingForm: React.FC<Props> = observer(({ user }) => {
type="button"
className={`flex items-center justify-between gap-1 w-full rounded-md border border-custom-border-300 shadow-sm duration-300 focus:outline-none px-3 py-2 text-sm`}
>
<span className="text-custom-text-400">{value || "Select your role..."}</span>
<span className={value ? "" : "text-custom-text-400"}>{value || "Select your role..."}</span>
<ChevronDownIcon className="h-3 w-3" aria-hidden="true" />
</Listbox.Button>

Expand Down

1 comment on commit 8ea6dd4

@vercel
Copy link

@vercel vercel bot commented on 8ea6dd4 Sep 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

plane-sh-dev – ./space/

plane-space-dev.vercel.app
plane-sh-dev-plane.vercel.app
plane-sh-dev-git-develop-plane.vercel.app

Please sign in to comment.