Skip to content

Commit

Permalink
Remove deprecated prop
Browse files Browse the repository at this point in the history
  • Loading branch information
radchukd committed Jan 25, 2023
1 parent 839ed86 commit 2b6ab8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/components/Credentials/CredentialsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default function CredentialsForm() {
<label className="block text-sm font-normal text-neutral-64 mb-1">
Host
</label>
<SelectBox value={hostType} handleSelect={setHostType}>
<SelectBox value={hostType} onValueChange={setHostType}>
{hostOptions.map(({ text, value }) => (
<SelectBoxItem key={value} text={text} value={value} />
))}
Expand Down

0 comments on commit 2b6ab8b

Please sign in to comment.