Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/auth/internal/AuthIntegrationInterface.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { authState } from '../LoginForm';
import {
firebaseLoginOnLoad,
isHrefFirebaseMagicLink,
firebaseOauthRedirect,
firebaseSendMagicLink,
firebaseSendSms,
firebaseVerifySms,
firebaseOauthRedirect
isHrefFirebaseMagicLink
} from '../../integrations/firebase';
import {
setStytchDomainCookie,
stytchLoginOnLoad,
stytchOauthRedirect,
stytchSendMagicLink,
stytchSendSms,
stytchVerifySms,
setStytchDomainCookie
stytchVerifySms
} from '../../integrations/stytch';
import FeatheryClient from '../../utils/featheryClient';
import { isAuthStytch } from './utils';
Expand Down
4 changes: 2 additions & 2 deletions src/integrations/firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export function installFirebase(firebaseConfig: any) {
// Bring in Firebase dependencies dynamically if this form uses Firebase
return dynamicImport(
[
'https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js',
'https://www.gstatic.com/firebasejs/8.7.1/firebase-auth.js'
'https://www.gstatic.com/firebasejs/11.6.0/firebase-app-compat.js',
'https://www.gstatic.com/firebasejs/11.6.0/firebase-auth-compat.js'
],
false
).then(() => {
Expand Down