From 458f027cdbf57f814f7af773c0ce83e4e2032049 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Sat, 15 Nov 2025 00:04:44 +0100 Subject: [PATCH] fix(home): block button interaction while animating --- app/components/Home/BottomScreen/Buttons/Buttons.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/Home/BottomScreen/Buttons/Buttons.vue b/app/components/Home/BottomScreen/Buttons/Buttons.vue index 169f63b..71f711e 100644 --- a/app/components/Home/BottomScreen/Buttons/Buttons.vue +++ b/app/components/Home/BottomScreen/Buttons/Buttons.vue @@ -19,6 +19,7 @@ const { selectedButton, selectorPosition } = useButtonNavigation({ buttons: BUTTONS_CONFIG, initialButton: "game", onButtonClick: (buttonName) => { + if (animationPercentage.value > 0) return; gsap.fromTo( animationPercentage, { value: 0 },