From d6ce5370fd6903f650245bde84d61abb94ea221c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Thu, 18 Nov 2021 16:25:59 +0000 Subject: [PATCH] fix: apollo link arguments order --- new-lamassu-admin/src/utils/apollo.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/new-lamassu-admin/src/utils/apollo.js b/new-lamassu-admin/src/utils/apollo.js index 9e3278b2..1921cdcf 100644 --- a/new-lamassu-admin/src/utils/apollo.js +++ b/new-lamassu-admin/src/utils/apollo.js @@ -58,8 +58,8 @@ const getClient = (history, location, getUserData, setUserData, setRole) => }), ApolloLink.split( operation => operation.getContext().clientName === 'pazuz', - uploadLink, - uploadLinkALT + uploadLinkALT, + uploadLink ) ]), cache: new InMemoryCache(),