File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -485,13 +485,13 @@ const resizeObserverEntry = useResizeObserverEntry(
485
485
);
486
486
487
487
/* retrieve width and height from legacy `contentRect` property */
488
- const { contentRectWidth : width , contentRectHeight : height } = resizeObserverEntry .contentRect ;
488
+ const { width : contentRectWidth , height : contentRectHeight } = resizeObserverEntry .contentRect ;
489
489
490
490
/* retrieve width and height from `borderBoxSize` property of first fragment */
491
- const { borderBoxSizeWidth : inlineSize , borderBoxSizeHeight : blockSize } = resizeObserverEntry .borderBoxSize [0 ];
491
+ const { inlineSize : borderBoxSizeWidth , blockSize : borderBoxSizeHeight } = resizeObserverEntry .borderBoxSize [0 ];
492
492
493
493
/* retrieve width and height from `contentBoxSize` property of first fragment */
494
- const { contentBoxSizeWidth : inlineSize , contentBoxSizeHeight : blockSize } = resizeObserverEntry .contentBoxSize [0 ];
494
+ const { inlineSize : contentBoxSizeWidth , blockSize : contentBoxSizeHeight } = resizeObserverEntry .contentBoxSize [0 ];
495
495
496
496
/* retrieve width and height from `devicePixelContentBoxSize` property of first fragment */
497
497
const {
You can’t perform that action at this time.
0 commit comments