Skip to content

Commit

Permalink
fix: spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
NichArchA82 committed Oct 5, 2024
1 parent 3de8726 commit 7e2da8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command-handler/src/util/format-user.js
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 7e2da8e

Please sign in to comment.