summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/Layout.jsx8
-rw-r--r--src/routes/index.jsx6
2 files changed, 8 insertions, 6 deletions
diff --git a/src/components/Layout.jsx b/src/components/Layout.jsx
index 79e7813..9aac935 100644
--- a/src/components/Layout.jsx
+++ b/src/components/Layout.jsx
@@ -12,10 +12,10 @@ export default function Layout ({userData})
// so the app would be broken when served on the isolated domain
const domain = window.location.host;
console.log(domain);
- if(domain === "localhost:3000")
- {
- window.location.replace("http://127.0.0.1:3000");
- }
+ //if(domain === "localhost:3000")
+ //{
+ // window.location.replace("http://127.0.0.1:3000");
+ //}
return (
<>
diff --git a/src/routes/index.jsx b/src/routes/index.jsx
index 1b778ef..df46102 100644
--- a/src/routes/index.jsx
+++ b/src/routes/index.jsx
@@ -9,9 +9,11 @@ import Layout from "../components/Layout";
export default function index()
{
const [userData, setUserData] = useState({});
- const url = "/api/v1/auth/data";
+ const url = "http://localhost:3000/api/v1/auth/data";
useEffect(() => {
- fetch(url).then((response) => {
+ fetch(url, {
+ credentials: "include"
+}).then((response) => {
if(response.ok) {
return response.json();
}