From 6f90c60acaf9329ed1c52085b7f559c1992498d9 Mon Sep 17 00:00:00 2001
From: Adhidarma Hadiwinoto <adhisimon@gmail.com>
Date: Tue, 8 Mar 2022 12:28:36 +0700
Subject: [PATCH] Fix eslint on claimbonus

---
 lib/command-handler/claimbonus.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/command-handler/claimbonus.js b/lib/command-handler/claimbonus.js
index 6c811ab..e7fd0dc 100644
--- a/lib/command-handler/claimbonus.js
+++ b/lib/command-handler/claimbonus.js
@@ -6,23 +6,23 @@ const commandError = require('./error');
 const coreapi = require('../coreapi');
 
 function help(keyword) {
-    return `Untuk menarik bonus ke saldo, ketik perintah dengan format:\n${ keyword.toUpperCase() }.<PIN>`;
+    return `Untuk menarik bonus ke saldo, ketik perintah dengan format:\n${keyword.toUpperCase()}.<PIN>`;
 }
 
 function execute(tokens, params, cb) {
     if (config.disable_claim_bonus || config.disable_claim_rebate) {
         const responseParams = {
             body: 'Maaf permintaan anda tidak dapat dilakukan',
-        }
+        };
 
         cb(null, null, responseParams);
         return;
     }
-    
+
     if (!tokens || tokens.length < 2) {
         const responseParams = {
-            body: `${ commandError.ERR_INVALID_FORMAT }. ${ help(tokens[0]) }`
-        }
+            body: `${commandError.ERR_INVALID_FORMAT}. ${help(tokens[0])}`,
+        };
 
         cb(null, null, responseParams);
         return;
@@ -36,4 +36,4 @@ function execute(tokens, params, cb) {
     coreapi(coreEndpoint, coreParams, 'GET', cb);
 }
 
-module.exports = execute;
\ No newline at end of file
+module.exports = execute;
-- 
1.9.0