diff --git a/packages/system/src/utils/store.ts b/packages/system/src/utils/store.ts index 7ab5504a..601f4681 100644 --- a/packages/system/src/utils/store.ts +++ b/packages/system/src/utils/store.ts @@ -240,7 +240,10 @@ export function updateNodeDimensions( const doUpdate = !!( dimensions.width && dimensions.height && - (node.measured?.width !== dimensions.width || node.measured?.height !== dimensions.height || update.force) + (node.measured?.width !== dimensions.width || + node.measured?.height !== dimensions.height || + !node.internals.handleBounds || + update.force) ); if (doUpdate) {