diff --git a/app/api/send-email/route.ts b/app/api/send-email/route.ts
index 39326a0..f27bf8d 100644
--- a/app/api/send-email/route.ts
+++ b/app/api/send-email/route.ts
@@ -111,12 +111,12 @@ const createAcceptanceMailOptions = (email: string): MailOptions => ({
- RSVP on Portal to confirm your participation at portal.garudahacks.com
- If you're under 18, sign and upload the Underage Consent Form on the RSVP Portal
- - Follow @garudahacks on Instagram for latest updates
-
Join our Discord community for updates and networking:
- discord.gg/5hVnu8t4mw
+ discord.gg/vQw3UeYzFb
- - Add the official Garuda Hacks 6.0 Twibbon to your social media: twb.nz/garudahacks6
+ - Follow @garudahacks on Instagram for latest updates
+ - Add the official Garuda Hacks 6.0 Twibbon to your social media: twibbo.nz/garudahacks6
- Prepare your development environment and tools
- Attend our technical meeting and speed dating sessions (details on Discord & Instagram)
- Mark your calendar and get ready to hack!
@@ -206,9 +206,9 @@ EVENT DETAILS
ACTION ITEMS
1. RSVP on Portal to confirm your participation: https://portal.garudahacks.com/
2. If you're under 18, sign and upload the Underage Consent Form on the RSVP Portal
-3. Follow @garudahacks on Instagram for latest updates: https://www.instagram.com/garudahacks
-4. Join our Discord community for updates and networking: https://discord.gg/5hVnu8t4mw
-5. Add the official Garuda Hacks 6.0 Twibbon to your social media: https://twb.nz/garudahacks6
+3. Join our Discord community for updates and networking: https://discord.gg/vQw3UeYzFb
+4. Follow @garudahacks on Instagram for latest updates: https://www.instagram.com/garudahacks
+5. Add the official Garuda Hacks 6.0 Twibbon to your social media: https://twibbo.nz/garudahacks6
6. Prepare your development environment and tools
7. Attend our technical meeting and speed dating sessions (details on Discord & Instagram)
8. Mark your calendar and get ready to hack!
@@ -419,7 +419,7 @@ const createWaitlistedMailOptions = (email: string): MailOptions => ({
export async function POST(request: Request) {
try {
const body = await request.json();
- const { email, type, rsvpDeadline, teamDeadline, eventStartDate } = body;
+ const { email, type } = body;
if (!email) {
return NextResponse.json(
@@ -443,12 +443,6 @@ export async function POST(request: Request) {
} else if (type === "waitlisted") {
mailOptions = createWaitlistedMailOptions(email);
} else {
- if (!rsvpDeadline || !teamDeadline || !eventStartDate) {
- return NextResponse.json(
- { error: "Missing required parameters for acceptance email" },
- { status: 400 }
- );
- }
mailOptions = createAcceptanceMailOptions(email);
}
diff --git a/app/applications/page.tsx b/app/applications/page.tsx
index 6c15c8e..e130f9d 100644
--- a/app/applications/page.tsx
+++ b/app/applications/page.tsx
@@ -317,9 +317,7 @@ export default function Applications() {
},
body: JSON.stringify({
email: selectedApplication.email,
- rsvpDeadline: "2025-07-01",
- teamDeadline: "2025-07-01",
- eventStartDate: "2025-07-24",
+ type: "accepted",
}),
});