From 5e6c26f3c1c4aa2c816049a492bc73a5f2e98ade Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Tue, 14 Apr 2026 18:32:07 +0200 Subject: [PATCH] fix: keyframe removal state --- apps/web/src/core/managers/timeline-manager.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/web/src/core/managers/timeline-manager.ts b/apps/web/src/core/managers/timeline-manager.ts index 4927a0e2..70cd0439 100644 --- a/apps/web/src/core/managers/timeline-manager.ts +++ b/apps/web/src/core/managers/timeline-manager.ts @@ -19,6 +19,7 @@ import type { AnimationPath, AnimationInterpolation, AnimationValue, + AnimationValueForPath, ScalarCurveKeyframePatch, } from "@/lib/animation/types"; import { @@ -506,7 +507,9 @@ export class TimelineManager { }); const target = resolveAnimationTarget({ element, path: propertyPath }); - const baseValue = target?.getBaseValue() ?? null; + const baseValue = + (target?.getBaseValue() as AnimationValueForPath | null) ?? + null; if (baseValue === null) { valueAtPlayheadMap.set(key, null); continue;