We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971297a commit 4474759Copy full SHA for 4474759
web/src/layout/Header/navbar/Menu/Settings/Notifications/FormContactDetails/FormContact.tsx
@@ -37,9 +37,12 @@ const FormContact: React.FC<IForm> = ({
37
38
return (
39
<>
40
- <label className="flex justify-between mb-[10px]">{contactLabel}</label>
+ <label htmlFor="contact-input" className="flex mb-[10px]">
41
+ {contactLabel}
42
+ </label>
43
<TextField
44
className="flex flex-col items-center w-full [&_input]:text-sm"
45
+ id="contact-input"
46
variant={fieldVariant}
47
value={contactInput}
48
onChange={(value) => setContactInput(value)}
0 commit comments