You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get this error for the placeholder
'Type '{ placeholder: string; }' is not assignable to type 'IntrinsicAttributes & Omit<SelectTriggerProps, "ref"> & RefAttributes'.
Property 'placeholder' does not exist on type 'IntrinsicAttributes & Omit<SelectTriggerProps, "ref"> & RefAttributes'.ts(2322)'
The text was updated successfully, but these errors were encountered:
<Select.Root>
<Select.Trigger placeholder="Assign..." />
<Select.Content>
<Select.Group>
<Select.Label>Suggestions</Select.Label>
{users.map((user) => (
<Select.Item key={user.id} value={user.id}>
{user.name}
</Select.Item>
))}
</Select.Group>
</Select.Content>
</Select.Root>
I get this error for the placeholder
'Type '{ placeholder: string; }' is not assignable to type 'IntrinsicAttributes & Omit<SelectTriggerProps, "ref"> & RefAttributes'.
Property 'placeholder' does not exist on type 'IntrinsicAttributes & Omit<SelectTriggerProps, "ref"> & RefAttributes'.ts(2322)'
The text was updated successfully, but these errors were encountered: