This commit is contained in:
Paulo Gustavo Veiga 2022-10-08 15:49:03 -07:00
parent a47d90e5d3
commit 349b68c1f7

View File

@ -68,7 +68,9 @@ const EditorPage = ({ isTryMode }: EditorPropsType): React.ReactElement => {
} }
useEffect(() => { useEffect(() => {
document.title = `${options.mapTitle} | WiseMapping `; if (options?.mapTitle) {
document.title = `${options.mapTitle} | WiseMapping `;
}
}); });
return loadCompleted ? ( return loadCompleted ? (