fix(settings/user/color): block interaction if modal is opened

This commit is contained in:
2026-03-15 17:37:18 +01:00
parent da57605de9
commit 623401ca36

View File

@@ -35,7 +35,9 @@ const animation = reactive({
isIntro: true,
isOutro: false,
});
const isAnimating = computed(() => animation.isIntro || animation.isOutro);
const isAnimating = computed(
() => animation.isIntro || animation.isOutro || confirmationModal.isOpen,
);
const animateIntro = (): gsap.core.Timeline => {
animation.isIntro = true;