From e403ae81b17b435edca04a4df6c064d390835422 Mon Sep 17 00:00:00 2001 From: Kevin Monisit Date: Mon, 26 Feb 2024 12:33:53 -0500 Subject: [PATCH] added email to error message --- app/dashboard/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx index 8f552ca..882239d 100644 --- a/app/dashboard/page.tsx +++ b/app/dashboard/page.tsx @@ -67,7 +67,7 @@ export default function Dashboard() { const resumeData = new FormData(); if (!pdf || pdf === undefined) { - alert("There was an error uploading your resume. Please try again."); + alert("There was an error uploading your resume. Please try again. If the problem persists, please email rnd@hackru.org"); } resumeData.set('file', pdf as File);