From 6ecacd3ffec0a25663803337363ad59d0d189906 Mon Sep 17 00:00:00 2001 From: Karl Haworth Date: Fri, 5 Apr 2024 10:14:13 -0400 Subject: [PATCH] =?UTF-8?q?This'll=20need=20an=20update=20for=20the=20retu?= =?UTF-8?q?rn=20type=20tweak,=20but=20you=20can=20also=20skip=20passing=20?= =?UTF-8?q?{}=20here,=20mainly=20just=20confusing=20to=20the=20reader=20?= =?UTF-8?q?=F0=9F=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Karl Haworth --- .../components/ApolloExplorerBrowser/ApolloExplorerBrowser.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/apollo-explorer/src/components/ApolloExplorerBrowser/ApolloExplorerBrowser.tsx b/plugins/apollo-explorer/src/components/ApolloExplorerBrowser/ApolloExplorerBrowser.tsx index 6238885a29..7cb6957aae 100644 --- a/plugins/apollo-explorer/src/components/ApolloExplorerBrowser/ApolloExplorerBrowser.tsx +++ b/plugins/apollo-explorer/src/components/ApolloExplorerBrowser/ApolloExplorerBrowser.tsx @@ -84,7 +84,7 @@ export const handleAuthRequest = ({ ...options, headers: { ...options.headers, - Authorization: `Bearer ${await authCallback({})}`, + Authorization: `Bearer ${await authCallback()}`, }, ...cookies, });