- {live && (
+ {live && !hideBack && (
<>
diff --git a/frontend/app/components/shared/NotFoundPage.tsx b/frontend/app/components/shared/NotFoundPage.tsx
new file mode 100644
index 000000000..b3f5e5db5
--- /dev/null
+++ b/frontend/app/components/shared/NotFoundPage.tsx
@@ -0,0 +1,24 @@
+import React from 'react';
+
+function NotFoundPage() {
+ return (
+
+
+
+ Session not found.
+
+
+ Please check your data retention policy.
+
+
+
+ );
+}
+
+export default NotFoundPage;
\ No newline at end of file
diff --git a/frontend/app/constants/storageKeys.ts b/frontend/app/constants/storageKeys.ts
index b8c56ccff..9406d38b9 100644
--- a/frontend/app/constants/storageKeys.ts
+++ b/frontend/app/constants/storageKeys.ts
@@ -6,4 +6,5 @@ export const GLOBAL_DESTINATION_PATH = "__$global-destinationPath$__"
export const GLOBAL_HAS_NO_RECORDINGS = "__$global-hasNoRecordings$__"
export const SITE_ID_STORAGE_KEY = "__$user-siteId$__"
export const GETTING_STARTED = "__$user-gettingStarted$__"
-export const MOUSE_TRAIL = "__$session-mouseTrail$__"
\ No newline at end of file
+export const MOUSE_TRAIL = "__$session-mouseTrail$__"
+export const IFRAME = "__$session-iframe$__"
\ No newline at end of file