Skip to content

Commit 09fedbe

Browse files
committed
fix base url
1 parent f2f0b4a commit 09fedbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android/src/main/java/com/tsauthentication/TsAuthenticationModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public String getName() {
4141
if(reactContext.getCurrentActivity() != null) {
4242
TSAuthentication.init(
4343
reactContext,
44-
baseUrl, // TODO - "https://webauthn.identity.security/v1/"
44+
baseUrl,
4545
clientId
4646
);
4747
promise.resolve(true);

example/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export default class App extends React.Component<any, State> {
188188
TSAuthenticationSDKModule.initialize(
189189
appConfiguration.clientId,
190190
appConfiguration.domain,
191-
`${appConfiguration.baseUrl}/cis/v1`
191+
`${appConfiguration.baseUrl}/cis/v1/`
192192
);
193193
}
194194

0 commit comments

Comments
 (0)