From b639ea766f99d01d3060a4b520fac775af918cc0 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 7 Oct 2025 06:55:09 -0500 Subject: [PATCH] new type --- web/src/types/timeline.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/types/timeline.ts b/web/src/types/timeline.ts index 45a0821ed..aa6762111 100644 --- a/web/src/types/timeline.ts +++ b/web/src/types/timeline.ts @@ -29,7 +29,7 @@ export type ObjectLifecycleSequence = { export type TimeRange = { before: number; after: number }; -export type TimelineType = "timeline" | "events"; +export type TimelineType = "timeline" | "events" | "activity"; export type TimelineScrubMode = "auto" | "drag" | "hover" | "compat";