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); }