From 7e02c7db9bcefa5fd64ec69c7cf7e327460bb3b3 Mon Sep 17 00:00:00 2001 From: Nicolas Carlier Date: Wed, 23 Dec 2020 16:23:38 +0000 Subject: [PATCH] fix(ui): fix bad header name --- ui/src/graphqlClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/graphqlClient.ts b/ui/src/graphqlClient.ts index 4aedc7047..9face3cdf 100644 --- a/ui/src/graphqlClient.ts +++ b/ui/src/graphqlClient.ts @@ -23,7 +23,7 @@ const authenticationLink = setContext(async (_, { headers }) => { return { headers: { ...headers, - Aauthorization: 'Bearer ' + user.access_token, + Authorization: 'Bearer ' + user.access_token, }, } }