We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b1d04f commit 172cb12Copy full SHA for 172cb12
1 file changed
ui/components/DomainInputField.tsx
@@ -57,7 +57,14 @@ export function DomainInputField({
57
{label && <Label>{label}</Label>}
58
<Group className={inputStyles({ isInvalid, isFocusVisible })}>
59
<div className="flex grow overflow-hidden">
60
- <Input {...focusProps} isEmbedded placeholder={placeholder} autoComplete={autocomplete} autoCorrect="off" />
+ <Input
61
+ {...focusProps}
62
+ isEmbedded
63
+ placeholder={placeholder}
64
+ autoComplete={autocomplete}
65
+ autoCorrect="off"
66
+ spellCheck="false"
67
+ />
68
</div>
69
<div className="flex w-fit items-center gap-1 px-1 text-muted-foreground text-xs">
70
{domain}
0 commit comments