diff --git a/.changeset/open-doors-flash.md b/.changeset/open-doors-flash.md new file mode 100644 index 00000000000..1d4003f8973 --- /dev/null +++ b/.changeset/open-doors-flash.md @@ -0,0 +1,5 @@ +--- +'@clerk/clerk-js': patch +--- + +Remove opacity from `Select` placeholder diff --git a/packages/clerk-js/src/ui/elements/Select.tsx b/packages/clerk-js/src/ui/elements/Select.tsx index 77a76187bca..c0dd8f6635f 100644 --- a/packages/clerk-js/src/ui/elements/Select.tsx +++ b/packages/clerk-js/src/ui/elements/Select.tsx @@ -393,16 +393,7 @@ export const SelectButton = ( let show: React.ReactNode = children; if (!children) { - show = selectedOption ? ( - buttonRenderOption(selectedOption) - ) : ( - ({ opacity: t.opacity.$inactive })} - > - {placeholder} - - ); + show = selectedOption ? buttonRenderOption(selectedOption) : {placeholder}; } return (