Skip to content

Commit

Permalink
chore: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoerge committed Apr 8, 2021
1 parent a04d0f7 commit bcc7b10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type InvalidValueProps = {
value?: unknown
onChange?: (event: PatchEvent, valueOverride?: ItemValue) => void
}
export default class InvalidValueInput extends React.PureComponent<InvalidValueProps, {}> {
export default class InvalidValueInput extends React.PureComponent<InvalidValueProps> {
handleClearClick = () => {
this.props.onChange(PatchEvent.from(unset()))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type Props = {
readOnly?: boolean
}

export default class UnknownFields extends React.PureComponent<Props, {}> {
export default class UnknownFields extends React.PureComponent<Props> {
handleUnsetClick = (fieldName) => {
this.props.onChange(PatchEvent.from(unset([fieldName])))
}
Expand Down

0 comments on commit bcc7b10

Please sign in to comment.