Skip to content

Commit e689944

Browse files
committed
fix api url
1 parent 3db9d08 commit e689944

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web-assets/js/check_email.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $(document).ready(function () {
2121
formAction = "#";
2222
return false;
2323
}
24-
const apiServerUrl = "https://api.{{DOMAIN}}.com/v3/users";
24+
const apiServerUrl = "https://api.{{DOMAIN}}/v3/users";
2525
$("#continueBtn").click(function () {
2626
var otp = $("#otp").val();
2727
if (!otp) {

web-assets/js/otp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $(document).ready(function () {
3535
const resendToken = qs["resendToken"];
3636
const userId = qs["userId"];
3737
if (resendToken && userId) {
38-
const apiServerUrl = "https://api.{{DOMAIN}}.com/v3/users";
38+
const apiServerUrl = "https://api.{{DOMAIN}}/v3/users";
3939
$("#resend").click(function () {
4040
$.ajax({
4141
type: "POST",

0 commit comments

Comments
 (0)