Skip to content

Commit 773f58e

Browse files
remove unrelated style change
1 parent 5932b7c commit 773f58e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/renderer/extensions/vueNodes/composables/useVueNodeResizeTracking.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ const resizeObserver = new ResizeObserver((entries) => {
131131
// Flush per-type
132132
for (const [type, updates] of updatesByType) {
133133
const config = trackingConfigs.get(type)
134-
if (config && updates.length) {
135-
config.updateHandler(updates)
136-
}
134+
if (config && updates.length) config.updateHandler(updates)
137135
}
138136

139137
// After node bounds are updated, refresh slot cached offsets and layouts

0 commit comments

Comments
 (0)