From d897194f9e958b5dc3d82cf98f0f43f6d02bc8c1 Mon Sep 17 00:00:00 2001 From: Charlie Tonneslan Date: Wed, 27 May 2026 21:37:31 -0400 Subject: [PATCH 1/2] Fix mobile nav 'Medication Suggester' link target and label Closes #494. The mobile nav 'Medical Suggester' link was pointing at /login (which kicked users to the login page) and used the wrong word. Point it at / (where the suggester lives, matching the desktop Header) and rename to 'Medication Suggester' for consistency with everywhere else in the app. Signed-off-by: Charlie Tonneslan --- frontend/src/components/Header/MdNavBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Header/MdNavBar.tsx b/frontend/src/components/Header/MdNavBar.tsx index 550b74d2..7a12222a 100644 --- a/frontend/src/components/Header/MdNavBar.tsx +++ b/frontend/src/components/Header/MdNavBar.tsx @@ -89,10 +89,10 @@ const MdNavBar = (props: LoginFormProps) => {
  • - Medical Suggester + Medication Suggester
  • From cdd6ba4332a0d8459e17a8e0a3b9279ea96d2ebd Mon Sep 17 00:00:00 2001 From: Sameer Date: Thu, 25 Jun 2026 10:21:13 -0400 Subject: [PATCH 2/2] docs: add local frontend and API notes (localhost:3000/8000) --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index fe765910..97c92123 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,12 @@ Tools used for development: Start the Postgres, Django REST, and React services by starting Docker Desktop and running `docker compose up --build` +Local development servers: + +- **Frontend (React dev server):** http://localhost:3000 — when developing locally, open the React app at this address. +- **Backend / API (Django):** http://localhost:8000 + - *Note:* if you open http://localhost:8000 in a browser you will see a minimal single-page fallback for the frontend, which is non-functional for development. To view the working frontend during development, use http://localhost:3000. + #### Postgres The application supports connecting to PostgreSQL databases via: