diff --git a/README.md b/README.md index 4fc810f..63c84b1 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Built for the final project in my full-stack bootcamp, this app uses React, Apol - **Backend:** Node.js, Express, GraphQL (Apollo Server), Mongoose - **Database:** MongoDB Atlas - **Authentication:** JSON Web Tokens (JWT) -- **APIs:** OpenRouteService (mileage), OpenWeatherMap (weather) +- **APIs:** OpenRouteService (mileage), OpenWeatherMap (weather), UselessFacts and National Park Service (funfacts), and Google Maps - **CI/CD:** GitHub Actions - **Deployment:** Render diff --git a/client/src/components/AuthForm.tsx b/client/src/components/AuthForm.tsx index b34448e..a18bfd6 100644 --- a/client/src/components/AuthForm.tsx +++ b/client/src/components/AuthForm.tsx @@ -150,7 +150,7 @@ const AuthForm: React.FC = () => { {loading && (

- Logging in... please wait ⏳ + Logging in... please wait

)} {errorMessage && ( diff --git a/client/src/main.tsx b/client/src/main.tsx index 06ee518..e2b19f0 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -16,10 +16,10 @@ import { AuthProvider } from "./context/AuthContext"; // Setup HTTP connection to GraphQL const httpLink = createHttpLink({ // TODO: USE THIS FOR LOCAL TESTING: - uri: "http://localhost:3001/graphql", + // uri: "http://localhost:3001/graphql", // TODO: USE THIS FOR DEPLOY - //uri: "https://miletracker-wokk.onrender.com/graphql", + uri: "https://miletracker-wokk.onrender.com/graphql", }); // Attach token to headers