From f6edea5d34ae77f72aaca6262a95b606c9af9b82 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sat, 10 Oct 2020 18:42:30 -0600 Subject: [PATCH] Add semi-colons. --- src/utils/gamecode.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/gamecode.ts b/src/utils/gamecode.ts index 5dd1a48..d19bc7d 100644 --- a/src/utils/gamecode.ts +++ b/src/utils/gamecode.ts @@ -6,5 +6,5 @@ export const generate_game_code = (): string => { game_code += Math.floor(Math.random() * 9); } while (game_code.length < 6); - return game_code -} \ No newline at end of file + return game_code; +}; \ No newline at end of file