Skip to content

Commit 8c6f199

Browse files
authored
Fix missing useCustomTheme type in Picker (wix#2235)
1 parent 4af3626 commit 8c6f199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/picker/types.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface PickerSearchStyle {
4848

4949
// TODO: need to extend TextField props (and not just TextInputProps)
5050
export type PickerBaseProps = Omit<TextFieldProps, 'value' | 'onChange'> &
51-
Omit<NewTextFieldProps, 'value' | 'onChange'> & {
51+
Omit<NewTextFieldProps, 'value' | 'onChange'> & ThemeComponent & {
5252
/* ...TextField.propTypes, */
5353
/**
5454
* Temporary prop required for migration to Picker's new API

0 commit comments

Comments
 (0)