We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12986d8 commit 71e71a6Copy full SHA for 71e71a6
src/utils/auth.ts
@@ -290,6 +290,11 @@ async function checkWithMailcheck(email: string): Promise<ValidatorResult> {
290
* @throws {ZSAError} If email is disposable or if all services fail
291
*/
292
export async function canSignUp({ email }: { email: string }): Promise<void> {
293
+ // Skip disposable email check in development
294
+ if (!isProd) {
295
+ return;
296
+ }
297
+
298
const validators = [
299
checkWithDebounce,
300
checkWithMailcheck,
0 commit comments