fix: deepscan error (#733)

This commit is contained in:
zuomeng wang
2023-01-13 15:54:21 +08:00
committed by GitHub
parent ba9a57d4ae
commit 21d24ad542
4 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ export const Editor = ({ page, workspace, setEditor }: Props) => {
}
setEditor(editor);
document.title = page?.meta.title || 'Untitled';
document.title = page.meta.title || 'Untitled';
return ret;
}, [workspace, page, setEditor]);