Skip to content

Commit

Permalink
fix: remove tooltip text (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyjablonski authored May 7, 2024
1 parent 3e8db22 commit 5d21218
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/forms/Field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ const Field = (props: FieldProps) => {
id={idOrName}
name={props.name}
defaultValue={props.defaultValue}
title={props.placeholder ? props.placeholder : idOrName}
placeholder={props.placeholder}
ref={props.register && props.register(props.validation)}
disabled={props.disabled}
Expand Down
1 change: 0 additions & 1 deletion src/forms/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export const Textarea = (props: TextareaProps) => {
ref={props.register && props.register(props.validation)}
rows={props.rows ?? 4}
wrap={props.wrap ?? "soft"}
title={props.label}
{...inputProps}
data-testid={props.dataTestId}
/>
Expand Down

0 comments on commit 5d21218

Please sign in to comment.