From 9323d6331aced27f09b5d43e135827d73b909397 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Thu, 19 Dec 2024 19:58:24 +0000 Subject: [PATCH] typo --- frontend/src/scenes/session-recordings/player/PlayerMeta.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }