Add semi-colons.

This commit is contained in:
Oliver-Akins 2020-10-10 18:42:30 -06:00
parent 8c040e762e
commit f6edea5d34

View file

@ -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
}
return game_code;
};