Skip to content

Commit

Permalink
Removed children prop (#1858)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Mar 26, 2024
1 parent f54d546 commit 0df8f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jsapi-components/src/spectrum/Picker/Picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useViewportData } from '../../useViewportData';
import { getPickerKeyColumn } from './PickerUtils';
import { usePickerItemRowDeserializer } from './usePickerItemRowDeserializer';

export interface PickerProps extends PickerPropsBase {
export interface PickerProps extends Omit<PickerPropsBase, 'children'> {
table: dh.Table;
/* The column of values to use as item keys. Defaults to the first column. */
keyColumn?: string;
Expand Down

0 comments on commit 0df8f85

Please sign in to comment.