mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Avoid sending ide-open-view-null-once
event (#21247)
GitOrigin-RevId: 2f46fe26561bfa2eca36ad605cdd217514aba09d
This commit is contained in:
parent
98bf2ac055
commit
d0b5c2f307
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ export function useLayoutEventTracking() {
|
|||
const { view, leftMenuShown, chatIsOpen } = useLayoutContext()
|
||||
|
||||
useEffect(() => {
|
||||
if (view !== 'editor' && view !== 'pdf') {
|
||||
if (view && view !== 'editor' && view !== 'pdf') {
|
||||
sendMBOnce(`ide-open-view-${view}-once`)
|
||||
}
|
||||
}, [view])
|
||||
|
|
Loading…
Reference in a new issue