diff --git a/client/src/common/components/Auth.js b/client/src/common/components/Auth.js index 4e220fe..ded1042 100644 --- a/client/src/common/components/Auth.js +++ b/client/src/common/components/Auth.js @@ -21,7 +21,10 @@ export default function AuthComponent() { }), }; - const response = await fetch("localhost:8000/api/token/", requestOptions); + const response = await fetch( + "http://localhost:8000/api/token/", + requestOptions + ); const data = await response.json(); console.log(data);