Skip to content

Commit

Permalink
Fixed e2e test (deephaven#2065)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Jun 12, 2024
1 parent beda299 commit a19c4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/code-studio/src/styleguide/Pickers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function Pickers(): JSX.Element {
[selectedKey]
);

const onChange = useCallback((key: ItemKey): void => {
const onChange = useCallback((key: ItemKey | null): void => {
setSelectedKey(key);
}, []);

Expand Down

0 comments on commit a19c4a7

Please sign in to comment.