Skip to content

Commit

Permalink
Update inconsistent casing (#39)
Browse files Browse the repository at this point in the history
* Update inconsistent casing

* Add tags and bump version

* More tags
  • Loading branch information
hwhmeikle committed Jul 17, 2023
1 parent 5f305ee commit 853617a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@authsignal/browser",
"version": "0.1.7",
"version": "0.1.8",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
Expand All @@ -9,7 +9,13 @@
"authsignal",
"mfa",
"2fa",
"authentication"
"authentication",
"passkeys",
"webauthn",
"passwordless",
"fido2",
"biometrics",
"typescript"
],
"license": "MIT",
"repository": "git:https://github.com/authsignal/authsignal-browser.git",
Expand Down
2 changes: 1 addition & 1 deletion src/api/passkey-api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class PasskeyApiClient {

async registrationOptions({token, userName}: RegistrationOptsRequest): Promise<RegistrationOptsResponse> {
const response = await this.api.post("user-authenticators/passkey/registration-options", {
json: {userName},
json: {username: userName},
headers: this.buildHeaders(token),
});

Expand Down

0 comments on commit 853617a

Please sign in to comment.