Remove remnant

This commit is contained in:
Eric Bailey
2024-03-13 17:16:30 -05:00
parent 1c26471541
commit ef794018f4
+3 -3
View File
@@ -48,12 +48,12 @@ const GroupContext = React.createContext<{
setFieldValue: () => {},
})
export type GroupProps<T = string> = React.PropsWithChildren<{
export type GroupProps = React.PropsWithChildren<{
type?: 'radio' | 'checkbox'
values: T[]
values: string[]
maxSelections?: number
disabled?: boolean
onChange: (value: T[]) => void
onChange: (value: string[]) => void
label: string
}>