fix(ui) uxt fixes
This commit is contained in:
parent
d50dfa1def
commit
1dfafa4a67
2 changed files with 4 additions and 2 deletions
|
|
@ -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} />
|
||||
|
|
|
|||
|
|
@ -113,7 +113,9 @@ function WebPlayer(props: any) {
|
|||
);
|
||||
|
||||
useEffect(() => {
|
||||
setActiveTab('EVENTS')
|
||||
if (uxtestingStore.isUxt()) {
|
||||
setActiveTab('EVENTS')
|
||||
}
|
||||
}, [uxtestingStore.isUxt()])
|
||||
|
||||
const onNoteClose = () => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue