Skip to content

Commit

Permalink
disabled username verification for prefill
Browse files Browse the repository at this point in the history
  • Loading branch information
glena authored and hzalaz committed Oct 28, 2016
1 parent 091f7d8 commit 58f094f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/classic.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class Classic {

const { email, username } = options.prefill || {};
if (typeof email === "string") model = setEmail(model, email);
if (typeof username === "string") model = setUsername(model, username);
if (typeof username === "string") model = setUsername(model, username, "username", false);

return model;
}
Expand Down

0 comments on commit 58f094f

Please sign in to comment.