Skip to content

Commit 68328ee

Browse files
authored
Merge branch 'main' into lewis/comp-delete-org-trace
2 parents 9f94dc1 + 987ad1e commit 68328ee

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [3.27.6](https://github.com/trycompai/comp/compare/v3.27.5...v3.27.6) (2026-04-22)
2+
3+
4+
### Bug Fixes
5+
6+
* **db:** increase prisma transaction timeout from 30s to 60s ([8d1764a](https://github.com/trycompai/comp/commit/8d1764a67e1c444028a3c853436a667cef13da13))
7+
18
## [3.27.5](https://github.com/trycompai/comp/compare/v3.27.4...v3.27.5) (2026-04-21)
29

310

apps/app/src/app/(app)/[orgId]/frameworks/[frameworkInstanceId]/components/FrameworkTimeline.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
CircleDash,
88
Time,
99
} from '@trycompai/design-system/icons';
10+
import { useFeatureFlag } from '@trycompai/analytics';
1011
import { useState } from 'react';
1112
import {
1213
useTimelines,
@@ -46,8 +47,11 @@ function getTimeRemaining(endDate: string | null): string | null {
4647
export function FrameworkTimeline({
4748
frameworkInstanceId,
4849
}: FrameworkTimelineProps) {
50+
const isTimelineEnabled = useFeatureFlag('is-timeline-enabled');
4951
const { timelines } = useTimelines();
5052

53+
if (!isTimelineEnabled) return null;
54+
5155
const timeline = timelines.find(
5256
(t) => t.frameworkInstanceId === frameworkInstanceId,
5357
);

0 commit comments

Comments
 (0)