Skip to content

Commit 467eaa1

Browse files
authored
Update email link auth snippet to stop using deprecated dynamicLinkDomain (#390)
* Update email link auth snippet to remove FDL * Update custom domain example
1 parent 3d04522 commit 467eaa1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

auth-next/email-link-auth.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ function emailLinkActionCodeSettings() {
1919
installApp: true,
2020
minimumVersion: '12'
2121
},
22-
dynamicLinkDomain: 'example.page.link'
22+
// The domain must be configured in Firebase Hosting and owned by the project.
23+
linkDomain: 'custom-domain.com'
2324
};
2425
// [END auth_email_link_actioncode_settings]
2526
}

snippets/auth-next/email-link-auth/auth_email_link_actioncode_settings.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const actionCodeSettings = {
1919
installApp: true,
2020
minimumVersion: '12'
2121
},
22-
dynamicLinkDomain: 'example.page.link'
22+
// The domain must be configured in Firebase Hosting and owned by the project.
23+
linkDomain: 'custom-domain.com'
2324
};
2425
// [END auth_email_link_actioncode_settings_modular]

0 commit comments

Comments
 (0)