diff --git a/assets/js/oauth.js b/assets/js/oauth.js index 10f584ef1..927f6d0a4 100644 --- a/assets/js/oauth.js +++ b/assets/js/oauth.js @@ -5,7 +5,7 @@ const redirectUri = `${window.location.origin}/`; // Make a POST request and parse the response as JSON const sendPostRequest = async (url, params) => { - let body = Object.keys(params) + const body = Object.keys(params) .map(key => `${key}=${params[key]}`) .join("&"); const options = {