Skip to content

Commit 74755f9

Browse files
committed
Tweak for new response from identity service
1 parent ce4912b commit 74755f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web-assets/js/signup.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ $(document).ready(function () {
4949
},
5050
dataType: 'json',
5151
success: function (result) {
52+
console.log(JSON.stringify(result));
5253
if (result && result.statusCode === 409) {
53-
$("#error").html("Error: Invalid or unavailable handle");
54+
$("#error").html(result.message);
5455
$("#error").closest(".message").fadeIn();
5556
return;
5657
}

0 commit comments

Comments
 (0)