diff --git a/packages/better-write-app/src/components/page/editor/entity/default/blocks/EditorEntityDefaultContainer.vue b/packages/better-write-app/src/components/page/editor/entity/default/blocks/EditorEntityDefaultContainer.vue index 3dc15f0d5..f488408b2 100644 --- a/packages/better-write-app/src/components/page/editor/entity/default/blocks/EditorEntityDefaultContainer.vue +++ b/packages/better-write-app/src/components/page/editor/entity/default/blocks/EditorEntityDefaultContainer.vue @@ -103,6 +103,8 @@ const motion = useMotion(container, variants) useIntersectionObserver(container, ([{ isIntersecting }]) => { + if(!EDITOR.configuration.transition) return + isIntersecting ? (motion.variant.value = 'enter') : (motion.variant.value = 'initial')