Skip to content

Commit

Permalink
Update email verification service URL
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed Jan 31, 2025
1 parent 5b1234c commit b94a1c9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/utils/verifier.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ type VerifierResult =
}

export async function verifyEmailAddress(emailAddress: string) {
const verifierUrl = new URL(
`https://verifier.meetchopra.com/verify/${emailAddress}`,
)
const verifierUrl = new URL(`https://verifyright.co/verify/${emailAddress}`)
verifierUrl.searchParams.append('token', VERIFIER_API_KEY)
const controller = new AbortController()
const timeoutId = setTimeout(() => controller.abort(), 2000)
Expand Down

0 comments on commit b94a1c9

Please sign in to comment.