We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52ec32e commit f2b00e1Copy full SHA for f2b00e1
1 file changed
packages/jsapi-components/src/spectrum/utils/usePickerProps.ts
@@ -60,7 +60,7 @@ export function usePickerProps<TProps>({
60
}: PickerWithTableProps<TProps>): UsePickerProps<TProps> {
61
const { itemHeight } = usePickerItemScale();
62
63
- const { getFormattedString: formatValue } = useFormatter(settings);
+ const { getFormattedString: formatValue, timeZone } = useFormatter(settings);
64
65
// `null` is a valid value for `selectedKey` in controlled mode, so we check
66
// for explicit `undefined` to identify uncontrolled mode.
@@ -127,6 +127,7 @@ export function usePickerProps<TProps>({
127
itemHeight,
128
deserializeRow,
129
searchColumnNames,
130
+ timeZone,
131
});
132
133
const normalizedItems = viewportData.items as (
0 commit comments