diff --git a/app/imports/ui/components/NavBar.jsx b/app/imports/ui/components/NavBar.jsx index 60c579d..71a4605 100644 --- a/app/imports/ui/components/NavBar.jsx +++ b/app/imports/ui/components/NavBar.jsx @@ -30,11 +30,13 @@ const NavBar = () => { @@ -51,7 +53,7 @@ const NavBar = () => { ) : ( - + {' '} diff --git a/app/imports/ui/pages/Profile.jsx b/app/imports/ui/pages/Profile.jsx index 18ef4da..8a0429f 100644 --- a/app/imports/ui/pages/Profile.jsx +++ b/app/imports/ui/pages/Profile.jsx @@ -72,7 +72,7 @@ const Profile = () => { {myModels.length === 0 ? ( // eslint-disable-next-line react/no-unescaped-entities -

You haven't uploaded any models yet. Head to the New Model tab to start.

+

You haven't uploaded any models yet. Head to Upload tab and select New Model to start.

) : ( {myModels.map((model) => )} @@ -98,7 +98,7 @@ const Profile = () => { {mySims.length === 0 ? ( // eslint-disable-next-line react/no-unescaped-entities -

You haven't made any simulations yet. Head to the Simulation tab to start.

+

You haven't made any simulations yet. Head to the Upload tab and select New Simulation to start.

) : ( {mySims.map((sim) => )}