From 2f4a6d5f47dc51582b391ead4ef1a45e105d897b Mon Sep 17 00:00:00 2001 From: zeppi Date: Thu, 30 Sep 2021 23:19:14 -0400 Subject: [PATCH] lint --- ui/store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/store.js b/ui/store.js index 8c7fade8d..d86d6c57f 100644 --- a/ui/store.js +++ b/ui/store.js @@ -194,7 +194,7 @@ const populateAuthTokenHeader = () => { } const tokens = getTokens(); if (tokens.access_token) { - Lbry.setApiHeader('Authorization', 'Bearer ' + tokens.access_token); + Lbry.setApiHeader('Authorization', `Bearer ${tokens.access_token}`); } else { Lbry.setApiHeader(X_LBRY_AUTH_TOKEN, tokens.auth_token); }