Skip to content

Commit

Permalink
rm empty type arguments brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
devgioele committed Sep 11, 2023
1 parent 84d6f9f commit ffd2b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/form/SearchField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { forwardRef } from 'react'
import { useInternationalization } from '../../framework'
import { InputField, InputFieldProps } from './InputField'

export type SearchFieldProps<> = Omit<InputFieldProps, 'ref' | 'name'> &
export type SearchFieldProps = Omit<InputFieldProps, 'ref' | 'name'> &
Partial<Pick<InputFieldProps, 'name'>>

/**
Expand Down

0 comments on commit ffd2b5e

Please sign in to comment.