diff --git a/command-handler/src/util/format-user.js b/command-handler/src/util/format-user.js index 4bca45b..13cb43b 100644 --- a/command-handler/src/util/format-user.js +++ b/command-handler/src/util/format-user.js @@ -1,6 +1,6 @@ const formatUser = (user) => { - const formatedUser = user.split('@')[0].replaceAll('.', '-').replaceAll('_', '-').toLowerCase(); - return formatedUser; + const formattedUser = user.split('@')[0].replaceAll('.', '-').replaceAll('_', '-').toLowerCase(); + return formattedUser; } export default formatUser; \ No newline at end of file