We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18e5cf3 commit f948865Copy full SHA for f948865
packages/react-devtools-shared/src/devtools/views/Components/Components.js
@@ -170,7 +170,9 @@ function createResizeReducer(wrapperRef) {
170
function ComponentResizer({children}): {|children: Function|} {
171
const componentsWrapperRef = useRef<HTMLDivElement>(null);
172
const resizeElementRef = useRef<HTMLElement>(null);
173
- const [state, dispatch, ACTION_TYPES] = createResizeReducer(componentsWrapperRef);
+ const [state, dispatch, ACTION_TYPES] = createResizeReducer(
174
+ componentsWrapperRef,
175
+ );
176
177
const onResizeStart = () =>
178
dispatch({type: ACTION_TYPES.SET_IS_RESIZING, payload: true});
0 commit comments