Skip to content

Commit

Permalink
Remove trailing slash (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
hwhmeikle committed Jul 26, 2022
1 parent e684b09 commit d20b1da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@authsignal/browser",
"type": "module",
"version": "0.0.9",
"version": "0.0.10",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/authsignal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {setCookie, getCookieDomain, getCookie} from "./helpers";
import {AuthsignalOptions, AuthsignalWindowMessage, MfaInput, ChallengeInput, LaunchOptions} from "./types";
import {PopupHandler} from "./popup-handler";

const DEFAULT_ENDPOINT = "https://mfa.authsignal.com/";
const DEFAULT_ENDPOINT = "https://mfa.authsignal.com";
const DEFAULT_COOKIE_NAME = "__as_aid";

export class Authsignal {
Expand Down

0 comments on commit d20b1da

Please sign in to comment.