fix(ui) uxt fixes

This commit is contained in:
nick-delirium 2023-12-07 16:23:56 +01:00
parent d50dfa1def
commit 1dfafa4a67
2 changed files with 4 additions and 2 deletions

View file

@ -17,7 +17,7 @@ function RightBlock(props: any) {
</div>
)
}
if (activeTab === 'HEATMAPS') {
if (activeTab === 'CLICKMAP') {
return (
<div className={cn("flex flex-col bg-white border-l", stl.panel)}>
<PageInsightsPanel setActiveTab={props.setActiveTab} />

View file

@ -113,7 +113,9 @@ function WebPlayer(props: any) {
);
useEffect(() => {
setActiveTab('EVENTS')
if (uxtestingStore.isUxt()) {
setActiveTab('EVENTS')
}
}, [uxtestingStore.isUxt()])
const onNoteClose = () => {