From 2ea8ada43955a593bb16f43b787c1185b7de7a32 Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Fri, 29 Nov 2024 17:13:59 +1100 Subject: [PATCH] fix(popups): backdrop filter failing to appear during animation --- src/SEQTA.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SEQTA.ts b/src/SEQTA.ts index 7bc64a1..48a69ac 100644 --- a/src/SEQTA.ts +++ b/src/SEQTA.ts @@ -334,7 +334,7 @@ export function OpenWhatsNewPopup() { if (settingsState.animations) { animate( [popup, bkelement as HTMLElement], - { scale: [0, 1], opacity: [0, 1] }, + { scale: [0, 1] }, { type: 'spring', stiffness: 220, @@ -434,7 +434,7 @@ export function OpenAboutPage() { if (settingsState.animations) { animate( [popup, bkelement as HTMLElement], - { scale: [0, 1], opacity: [0, 1] }, + { scale: [0, 1] }, { type: 'spring', stiffness: 220,