diff --git a/frontend/app/components/Session/RightBlock.tsx b/frontend/app/components/Session/RightBlock.tsx
index 93fcdd927..ed1ea1d63 100644
--- a/frontend/app/components/Session/RightBlock.tsx
+++ b/frontend/app/components/Session/RightBlock.tsx
@@ -17,7 +17,7 @@ function RightBlock(props: any) {
)
}
- if (activeTab === 'HEATMAPS') {
+ if (activeTab === 'CLICKMAP') {
return (
diff --git a/frontend/app/components/Session/WebPlayer.tsx b/frontend/app/components/Session/WebPlayer.tsx
index 0deeedd61..91fbadf82 100644
--- a/frontend/app/components/Session/WebPlayer.tsx
+++ b/frontend/app/components/Session/WebPlayer.tsx
@@ -113,7 +113,9 @@ function WebPlayer(props: any) {
);
useEffect(() => {
- setActiveTab('EVENTS')
+ if (uxtestingStore.isUxt()) {
+ setActiveTab('EVENTS')
+ }
}, [uxtestingStore.isUxt()])
const onNoteClose = () => {