Skip to content

Commit

Permalink
Merge branch '9.1' into feat/mt-dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Jul 8, 2024
2 parents 3e1e5a5 + 5f1b31e commit 36fa29e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,6 @@ docker run -d \
sleep 7
curl --location --request POST 'https://try.supertokens.com/recipe/dashboard/user' \
--header 'rid: dashboard' \
--header 'api-key: <YOUR-API-KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{"email": "[email protected]","password": "abcd1234"}'
curl --location --request POST 'https://try.supertokens.com/recipe/dashboard/user' \
--header 'rid: dashboard' \
--header 'api-key: <YOUR-API-KEY>' \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,8 @@ public void testUpdateNumber() throws Exception {
String newPhoneNumber = generateRandomNumber(8);
updatePhoneNumber(t1, user.getAsJsonPrimitive("id").getAsString(), newPhoneNumber);
user.remove("phoneNumber");
// We need to normalize the phone number before adding it to the user object, as the update API performs normalization.
// We need to normalize the phone number before adding it to the user object, as the update API performs
// normalization.
user.addProperty("phoneNumber", io.supertokens.utils.Utils.normalizeIfPhoneNumber(newPhoneNumber));

assertEquals(user, signInUpNumberUsingUserInputCode(userTenant, newPhoneNumber));
Expand Down

0 comments on commit 36fa29e

Please sign in to comment.