diff --git a/web/core/hooks/use-page-operations.ts b/web/core/hooks/use-page-operations.ts index 93d8b8ad2..d16fd1c04 100644 --- a/web/core/hooks/use-page-operations.ts +++ b/web/core/hooks/use-page-operations.ts @@ -77,7 +77,7 @@ export const usePageOperations = ( } }, move: async () => {}, - openInNewTab: () => window.open(`/${pageLink}`, "_blank"), + openInNewTab: () => window.open(pageLink, "_blank"), toggleAccess: async () => { const changedPageType = access === EPageAccess.PUBLIC ? "private" : "public"; try {