refactor: use const

This commit is contained in:
jamesgeorge007
2020-01-11 10:42:08 +05:30
parent d13e6f1897
commit 908d672cf2

View File

@@ -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 = {