Convert username spaces to periods

master
Tanner Collin 4 years ago
parent a3f113de6d
commit 529bcaa1de
  1. 2
      webclient/src/LoginSignup.js

@ -76,7 +76,7 @@ export function SignupForm(props) {
const genUsername = () => (
input.first_name && input.last_name ?
(input.first_name + '.' + input.last_name).toLowerCase()
(input.first_name + '.' + input.last_name).toLowerCase().replace(/ /g, '.')
:
''
);

Loading…
Cancel
Save