From 1240eb8170eebf0963890f0ce18472a3260c80d9 Mon Sep 17 00:00:00 2001 From: anuveyatsu Date: Tue, 23 Jun 2020 14:06:26 +0600 Subject: [PATCH] [search][xs]: clean up unnecessary variable assignment. --- pages/search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/search.tsx b/pages/search.tsx index a4971c3c..419f1b9c 100644 --- a/pages/search.tsx +++ b/pages/search.tsx @@ -50,7 +50,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => { const apolloClient = initializeApollo(); - const { data } = await apolloClient.query({ + await apolloClient.query({ query: QUERY, variables, });