We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce4912b commit 74755f9Copy full SHA for 74755f9
web-assets/js/signup.js
@@ -49,8 +49,9 @@ $(document).ready(function () {
49
},
50
dataType: 'json',
51
success: function (result) {
52
+ console.log(JSON.stringify(result));
53
if (result && result.statusCode === 409) {
- $("#error").html("Error: Invalid or unavailable handle");
54
+ $("#error").html(result.message);
55
$("#error").closest(".message").fadeIn();
56
return;
57
}
0 commit comments