diff options
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/@next/components/modals/input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/modals/input.tsx b/packages/website/ts/@next/components/modals/input.tsx index e3062b895..8cfcc9763 100644 --- a/packages/website/ts/@next/components/modals/input.tsx +++ b/packages/website/ts/@next/components/modals/input.tsx @@ -30,7 +30,7 @@ export const Input = React.forwardRef((props: InputProps, ref?: React.Ref<HTMLIn return ( <InputWrapper {...props}> <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>} </InputWrapper> ); |