From ad8488192129dc404d1d213626943ab63c790b1b Mon Sep 17 00:00:00 2001 From: Viet Huynh Date: Sat, 9 Sep 2023 23:25:05 +0700 Subject: [PATCH] fixed helper log --- lib/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers.js b/lib/helpers.js index c45f99e..95fe9af 100644 --- a/lib/helpers.js +++ b/lib/helpers.js @@ -23,7 +23,7 @@ const request = async (url, options) => { const data = await response.json(); - console.log(data.success); + console.log(`Success: ${data.success}`); return data; };