From 8b91ac3baf4150502541874489e43bcd961a813d Mon Sep 17 00:00:00 2001
From: Leonardo Christino <leomilho@gmail.com>
Date: Wed, 18 Oct 2023 14:30:40 +0200
Subject: [PATCH] chore: allow fetch redirect

---
 apps/web/src/app/app.tsx | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/apps/web/src/app/app.tsx b/apps/web/src/app/app.tsx
index ba70c45a0..919cd2c60 100644
--- a/apps/web/src/app/app.tsx
+++ b/apps/web/src/app/app.tsx
@@ -72,9 +72,14 @@ export function App(props: App) {
 
     const domain = import.meta.env.BACKEND_URL;
     const useruri = import.meta.env.BACKEND_USER;
-    fetch(`${domain}${useruri}/headers`);
     fetch(`${domain}${useruri}/headers`, {
+      method: 'GET',
+      redirect: 'follow',
+    });
+    fetch(`${domain}${useruri}/headers`, {
+      method: 'GET',
       credentials: 'include',
+      redirect: 'follow',
       headers: {
         Authorization: `Bearer ${auth.accessToken}`,
       },
-- 
GitLab