From b68e4ad5f5eb3f21c9b48d718e78f300c8897ae9 Mon Sep 17 00:00:00 2001 From: Steve Hu Date: Sun, 9 Feb 2020 19:09:04 -0500 Subject: [PATCH] fixes #223 update the fetch to /oauth2/code with credentials include --- login-view/src/App.js | 1 + 1 file changed, 1 insertion(+) diff --git a/login-view/src/App.js b/login-view/src/App.js index d5cb76bc..fc0f0061 100644 --- a/login-view/src/App.js +++ b/login-view/src/App.js @@ -84,6 +84,7 @@ function App() { fetch("/oauth2/code", { method: 'POST', redirect: 'follow', + credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', },