summaryrefslogtreecommitdiffstats
path: root/frontend/lib/withData.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/lib/withData.js')
-rw-r--r--frontend/lib/withData.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/frontend/lib/withData.js b/frontend/lib/withData.js
index 5c4614f..ada9675 100644
--- a/frontend/lib/withData.js
+++ b/frontend/lib/withData.js
@@ -10,7 +10,6 @@ const client = new ApolloClient({
request: operation => {
console.log(operation);
if (typeof localStorage !== 'undefined' && localStorage.getItem('token')) {
- console.log(`Bearer ${localStorage.getItem('token')}`);
operation.setContext({
headers: {
authorization: `Bearer ${localStorage.getItem('token')}`,