From 5eb2464995a699baed83acb7aea7e37de182fdb1 Mon Sep 17 00:00:00 2001 From: pataniaeli Date: Wed, 1 Jul 2026 16:03:35 -0400 Subject: [PATCH] Activate northeastern.edu domain restriction --- app/signup/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/signup/page.tsx b/app/signup/page.tsx index a46e93c..782df45 100644 --- a/app/signup/page.tsx +++ b/app/signup/page.tsx @@ -31,10 +31,10 @@ export default function SignupPage() { setError('Please enter a valid email address.') return } - // if (!trimmed.toLowerCase().endsWith('@northeastern.edu')) { - // setError('Signup is restricted to @northeastern.edu email addresses.') - // return - // } + if (!trimmed.toLowerCase().endsWith('@northeastern.edu')) { + setError('Signup is restricted to @northeastern.edu email addresses.') + return + } setSubmitting(true) const res = await fetch('/api/signup/request', { method: 'POST',