Skip to content

Commit 82170f1

Browse files
authored
Merge pull request #66 from theredmoose/fix/auth-account-linking-and-email-verification
Fix: account linking detection and email verification on signup
2 parents ae01494 + 5f9522f commit 82170f1

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,7 @@ function App() {
477477
// Show email verification banner for email/password accounts that haven't verified yet
478478
const isEmailProvider = user.providerData?.some(p => p.providerId === 'password');
479479
const showVerificationBanner = isEmailProvider && !user.emailVerified;
480+
const [verificationResent, setVerificationResent] = useState(false);
480481

481482
const handleResendVerification = async () => {
482483
try {

0 commit comments

Comments
 (0)