We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea188e2 commit 272a633Copy full SHA for 272a633
static/app/views/replays/detail/ai/index.tsx
@@ -122,15 +122,15 @@ function AiContent({replayRecord}: Props) {
122
const chapterData = summaryData?.data.time_ranges.map(
123
({period_title, period_start, period_end}) => ({
124
title: period_title,
125
- start: period_start * 1000,
126
- end: period_end * 1000,
+ start: period_start,
+ end: period_end,
127
breadcrumbs:
128
replay
129
?.getChapterFrames()
130
.filter(
131
breadcrumb =>
132
- breadcrumb.timestampMs >= period_start * 1000 &&
133
- breadcrumb.timestampMs <= period_end * 1000
+ breadcrumb.timestampMs >= period_start &&
+ breadcrumb.timestampMs <= period_end
134
) ?? [],
135
})
136
);
0 commit comments