diff --git a/src/App.js b/src/App.js
index 183875459..bbeeab00b 100644
--- a/src/App.js
+++ b/src/App.js
@@ -166,10 +166,10 @@ export const CachedRoute = ({ component: Component, ...rest }) => {
resetCache()
return (
<>
-
+
>
-
+
)
}} />
)
diff --git a/src/components/AdminPane/AdminPane.js b/src/components/AdminPane/AdminPane.js
index 5d392523d..1cf10f9ae 100644
--- a/src/components/AdminPane/AdminPane.js
+++ b/src/components/AdminPane/AdminPane.js
@@ -131,10 +131,10 @@ export const CustomRoute = ({ component: Component, ...rest }) => {
render={props => {
return (
<>
-
+
>
-
+
)
}} />
)
diff --git a/src/components/Head/Head.js b/src/components/Head/Head.js
index 1950bbf36..31f87a346 100644
--- a/src/components/Head/Head.js
+++ b/src/components/Head/Head.js
@@ -61,26 +61,31 @@ export const formatTitle = (props) => {
return capitalize(param)
}
})
- const newTitle = _isEmpty(pathArr) ? REACT_APP_TITLE : REACT_APP_TITLE + ' - ' + pathArr.join(' - ')
+
+ pathArr.reverse();
+
+ const newTitle = _isEmpty(pathArr) ? REACT_APP_TITLE : pathArr.join(' - ') + ' - ' + REACT_APP_TITLE
return newTitle
}
}
export const HeadTitle = (props) => {
+
return (
{formatTitle(props)}
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
)
}