Browse Source

feat(replays): Allow replays to be played at 8x and 16x speed (#43612)

![SCR-20230124-gdy](https://user-images.githubusercontent.com/187460/214355565-e76e276f-2a05-4721-a9ad-7bf8dffcabc1.png)

Fixes #40913
Ryan Albrecht 2 years ago
parent
commit
6130ff29f6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/components/replays/replayController.tsx

+ 1 - 1
static/app/components/replays/replayController.tsx

@@ -157,7 +157,7 @@ function ReplayOptionsMenu({speedOptions}: {speedOptions: number[]}) {
 
 
 const ReplayControls = ({
 const ReplayControls = ({
   toggleFullscreen,
   toggleFullscreen,
-  speedOptions = [0.1, 0.25, 0.5, 1, 2, 4],
+  speedOptions = [0.1, 0.25, 0.5, 1, 2, 4, 8, 16],
 }: Props) => {
 }: Props) => {
   const config = useLegacyStore(ConfigStore);
   const config = useLegacyStore(ConfigStore);
   const organization = useOrganization();
   const organization = useOrganization();