diff --git a/frontend/src/scenes/session-recordings/player/PlayerMeta.tsx b/frontend/src/scenes/session-recordings/player/PlayerMeta.tsx index 4923164d870e2..c5872141675a7 100644 --- a/frontend/src/scenes/session-recordings/player/PlayerMeta.tsx +++ b/frontend/src/scenes/session-recordings/player/PlayerMeta.tsx @@ -23,7 +23,7 @@ function URLOrScreen({ lastUrl }: { lastUrl: string | undefined }): JSX.Element if (isObject(lastUrl)) { if ('href' in lastUrl) { // regression protection, we saw a user whose site was sometimes sending the string-ified location object - // this is a best-effort attempt to show the href in that case in that case + // this is a best-effort attempt to show the href in that case lastUrl = lastUrl['href'] as string | undefined } }