mirror of
https://github.com/makeplane/plane.git
synced 2026-05-08 00:49:36 -05:00
[WIKI-556] fix : invert tracking logic #7668
This commit is contained in:
+1
-4
@@ -58,10 +58,7 @@ const PageDetailsPage = observer(() => {
|
||||
const { error: pageDetailsError } = useSWR(
|
||||
workspaceSlug && projectId && pageId ? `PAGE_DETAILS_${pageId}` : null,
|
||||
workspaceSlug && projectId && pageId
|
||||
? () =>
|
||||
fetchPageDetails(workspaceSlug?.toString(), projectId?.toString(), pageId.toString(), {
|
||||
trackVisit: true,
|
||||
})
|
||||
? () => fetchPageDetails(workspaceSlug?.toString(), projectId?.toString(), pageId.toString())
|
||||
: null,
|
||||
{
|
||||
revalidateIfStale: true,
|
||||
|
||||
Reference in New Issue
Block a user