Skip to content

Commit 272a633

Browse files
ref(replay): adjust timestamps in replay ai summary UI (#93992)
followup to getsentry/seer#2809
1 parent ea188e2 commit 272a633

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

static/app/views/replays/detail/ai/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,15 @@ function AiContent({replayRecord}: Props) {
122122
const chapterData = summaryData?.data.time_ranges.map(
123123
({period_title, period_start, period_end}) => ({
124124
title: period_title,
125-
start: period_start * 1000,
126-
end: period_end * 1000,
125+
start: period_start,
126+
end: period_end,
127127
breadcrumbs:
128128
replay
129129
?.getChapterFrames()
130130
.filter(
131131
breadcrumb =>
132-
breadcrumb.timestampMs >= period_start * 1000 &&
133-
breadcrumb.timestampMs <= period_end * 1000
132+
breadcrumb.timestampMs >= period_start &&
133+
breadcrumb.timestampMs <= period_end
134134
) ?? [],
135135
})
136136
);

0 commit comments

Comments
 (0)