From 270c7997c6c5ecf9d1e1491bf6729c2640bd4159 Mon Sep 17 00:00:00 2001 From: Aya Morisawa 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)];