[WIKI-556] chore: disable tracking of page hover (#7650)
* chore: disable tracking of page hover * chore: add track check for page feth * chore: make track check mandatory * chore: update track format --------- Co-authored-by: VipinDevelops <vipinchaudhary1809@gmail.com>
This commit is contained in:
parent
ba7303b7af
commit
e144ce8cf2
4 changed files with 32 additions and 13 deletions
|
|
@ -58,7 +58,10 @@ const PageDetailsPage = observer(() => {
|
|||
const { error: pageDetailsError } = useSWR(
|
||||
workspaceSlug && projectId && pageId ? `PAGE_DETAILS_${pageId}` : null,
|
||||
workspaceSlug && projectId && pageId
|
||||
? () => fetchPageDetails(workspaceSlug?.toString(), projectId?.toString(), pageId.toString())
|
||||
? () =>
|
||||
fetchPageDetails(workspaceSlug?.toString(), projectId?.toString(), pageId.toString(), {
|
||||
trackVisit: true,
|
||||
})
|
||||
: null,
|
||||
{
|
||||
revalidateIfStale: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue