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> </div>
) )
} }
if (activeTab === 'HEATMAPS') { if (activeTab === 'CLICKMAP') {
return ( return (
<div className={cn("flex flex-col bg-white border-l", stl.panel)}> <div className={cn("flex flex-col bg-white border-l", stl.panel)}>
<PageInsightsPanel setActiveTab={props.setActiveTab} /> <PageInsightsPanel setActiveTab={props.setActiveTab} />

View file

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