From d4b031216b69ccd4aee6d740477d3b6de3fdbc87 Mon Sep 17 00:00:00 2001 From: Marissa Halim <66540719+marissahalim@users.noreply.github.com> Date: Sun, 12 Nov 2023 20:18:40 -1000 Subject: [PATCH] Update navbar (#1) * Update navbar * Update profile message to match new navbar * sign in dropdown fix --- app/imports/ui/components/NavBar.jsx | 10 ++++++---- app/imports/ui/pages/Profile.jsx | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) 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) => )}