@@ -18,7 +18,7 @@ export const useCreateNewPage: UseCreateNewPage = () => {
if (isLoadingPagePath) return;
return createAndTransit(
- { parentPath: currentPagePath, optionalParentPath: '/' },
+ { parentPath: currentPagePath, optionalParentPath: '/', wip: true },
);
}, [createAndTransit, currentPagePath, isLoadingPagePath]);
@@ -32,7 +32,7 @@ export const useCreateTodaysMemo: UseCreateTodaysMemo = () => {
if (!isCreatable || todaysPath == null) return;
- { path: todaysPath },
+ { path: todaysPath, wip: true },
{ shouldCheckPageExists: true },
}, [createAndTransit, isCreatable, todaysPath]);