Browse Source

fix(replay): Fix replay canvas replayer typo (#67671)

Catherine Lee 11 months ago
parent
commit
c8d847a4a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/components/replays/canvasReplayerPlugin.tsx

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

@@ -271,7 +271,7 @@ export function CanvasReplayerPlugin(events: eventWithTime[]): ReplayPlugin {
       if (img) {
         img.src = target.toDataURL();
         img.style.width = '100%';
-        img.style.height = '100%;';
+        img.style.height = '100%';
       }
 
       prune(e);