Merge pull request #1467 from 0xProject/fix/website/remove-placeholders
[website] Don't show placeholder text on contact page
This commit is contained in:
commit
5ec1ae5f7f
@ -30,7 +30,7 @@ export const Input = React.forwardRef((props: InputProps, ref?: React.Ref<HTMLIn
|
|||||||
return (
|
return (
|
||||||
<InputWrapper {...props}>
|
<InputWrapper {...props}>
|
||||||
<Label htmlFor={id}>{label}</Label>
|
<Label htmlFor={id}>{label}</Label>
|
||||||
<StyledInput as={componentType} ref={ref} id={id} placeholder={label} isErrors={isErrors} {...props} />
|
<StyledInput as={componentType} ref={ref} id={id} isErrors={isErrors} {...props} />
|
||||||
{isErrors && <Error>{errorMessage}</Error>}
|
{isErrors && <Error>{errorMessage}</Error>}
|
||||||
</InputWrapper>
|
</InputWrapper>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user