From 50bf058a90200f77bbc709afe9e69b9077b26ab4 Mon Sep 17 00:00:00 2001
From: Aya Morisawa <AyaMorisawa4869@gmail.com>
Date: Thu, 16 Aug 2018 05:15:51 +0900
Subject: [PATCH] Remove trailing comma

---
 src/client/app/common/scripts/get-kao.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/client/app/common/scripts/get-kao.ts b/src/client/app/common/scripts/get-kao.ts
index 58857edfe..dff709206 100644
--- a/src/client/app/common/scripts/get-kao.ts
+++ b/src/client/app/common/scripts/get-kao.ts
@@ -2,7 +2,7 @@ const kaos = [
 	'(=^・・^=)',
 	'v(\'ω\')v',
 	'🐡( \'-\' 🐡 )フグパンチ!!!!',
-	'🖕(´・_・`)🖕',
+	'🖕(´・_・`)🖕'
 ];
 
 export default () => kaos[Math.floor(Math.random() * kaos.length)];