Skip to content

Commit cc30199

Browse files
authored
Merge branch 'master' into tkdodo/feat/intent-preload
2 parents 5656749 + 2d28dad commit cc30199

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/components/replays/replayController.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {useReplayContext} from 'sentry/components/replays/replayContext';
99
import {ReplayFullscreenButton} from 'sentry/components/replays/replayFullscreenButton';
1010
import ReplayPlayPauseButton from 'sentry/components/replays/replayPlayPauseButton';
1111
import TimeAndScrubberGrid from 'sentry/components/replays/timeAndScrubberGrid';
12-
import {IconNext, IconRewind10} from 'sentry/icons';
12+
import {IconChevron, IconRewind10} from 'sentry/icons';
1313
import {t} from 'sentry/locale';
1414
import {space} from 'sentry/styles/space';
1515
import {getNextReplayFrame} from 'sentry/utils/replays/getReplayEvent';
@@ -46,7 +46,7 @@ function ReplayPlayPauseBar({isLoading}: {isLoading?: boolean}) {
4646
disabled={isLoading}
4747
size="sm"
4848
title={t('Next breadcrumb')}
49-
icon={<IconNext size="sm" />}
49+
icon={<IconChevron size="sm" direction="right" />}
5050
onClick={() => {
5151
if (!replay) {
5252
return;

0 commit comments

Comments
 (0)