Steven Fukase 4 years ago
parent
commit
f9d3304653
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/client/js/components/PageCreateModal.jsx

+ 1 - 1
src/client/js/components/PageCreateModal.jsx

@@ -78,7 +78,7 @@ const PageCreateModal = (props) => {
   function joinCheckRedirect(...paths) {
   function joinCheckRedirect(...paths) {
     const joinedUrl = encodeURI(urljoin(...paths));
     const joinedUrl = encodeURI(urljoin(...paths));
     if (!isCreatablePage(joinedUrl)) {
     if (!isCreatablePage(joinedUrl)) {
-      toastError(new Error('Invalid characters found.'));
+      toastError(new Error('Invalid characters found on new page path'));
       return;
       return;
     }
     }
     window.location.href = generateEditorPath(joinedUrl);
     window.location.href = generateEditorPath(joinedUrl);