diff --git a/apps/bot/bot.ts b/apps/bot/bot.ts
index 8a39735ca..c2833256f 100644
--- a/apps/bot/bot.ts
+++ b/apps/bot/bot.ts
@@ -144,7 +144,7 @@ app.get("/postMsgToServer", (h) => {
url: c.siteUrl,
})
.setDescription(
- `**Verify your registration for ${c.hackathonName} ${c.itteration} to gain access to the rest of the server!**\n\nClick the "verify" button below to begin the verification process.\n\u200B`,
+ `**Verify your registration for ${c.hackathonName} ${c.iteration} to gain access to the rest of the server!**\n\nClick the "verify" button below to begin the verification process.\n\u200B`,
)
.setThumbnail(`${c.siteUrl}${c.icon.md}`)
.setFooter({
diff --git a/apps/web/src/app/dash/page.tsx b/apps/web/src/app/dash/page.tsx
index 0706c2494..9c9901802 100644
--- a/apps/web/src/app/dash/page.tsx
+++ b/apps/web/src/app/dash/page.tsx
@@ -33,7 +33,7 @@ export default async function Page() {
diff --git a/apps/web/src/app/dash/pass/page.tsx b/apps/web/src/app/dash/pass/page.tsx
index baf48a462..944529b96 100644
--- a/apps/web/src/app/dash/pass/page.tsx
+++ b/apps/web/src/app/dash/pass/page.tsx
@@ -92,7 +92,7 @@ function EventPass({ qrPayload, user, clerk, guild }: EventPassProps) {
{c.hackathonName}{" "}
- {c.itteration}
+ {c.iteration}
diff --git a/apps/web/src/components/schedule/UserScheduleView.tsx b/apps/web/src/components/schedule/UserScheduleView.tsx
index 84abd624e..6eaea6f65 100644
--- a/apps/web/src/components/schedule/UserScheduleView.tsx
+++ b/apps/web/src/components/schedule/UserScheduleView.tsx
@@ -10,7 +10,7 @@ export default async function UserScheduleView() {
);
diff --git a/apps/web/src/emails/RegistrationSuccessEmail.tsx b/apps/web/src/emails/RegistrationSuccessEmail.tsx
index 14e628e5f..1c05a9fca 100644
--- a/apps/web/src/emails/RegistrationSuccessEmail.tsx
+++ b/apps/web/src/emails/RegistrationSuccessEmail.tsx
@@ -43,7 +43,7 @@ export default function RegistrationSuccessEmail({
You are now registered for {c.hackathonName} $
- {c.itteration}!
+ {c.iteration}!
Hello {firstName},
diff --git a/apps/web/src/lib/constants/index.ts b/apps/web/src/lib/constants/index.ts
index 2de61d330..c107f8604 100644
--- a/apps/web/src/lib/constants/index.ts
+++ b/apps/web/src/lib/constants/index.ts
@@ -7,7 +7,7 @@ export const UNIQUE_KEY_CONSTRAINT_VIOLATION_CODE = "23505";
export const UNIQUE_KEY_MAPPER_DEFAULT_KEY =
"default" as keyof typeof c.db.uniqueKeyMapper;
export const PAYLOAD_TOO_LARGE_CODE = 413;
-export const HACKER_REGISTRATION_STORAGE_KEY = `${c.hackathonName}_${c.itteration}_hackerRegistrationData`;
+export const HACKER_REGISTRATION_STORAGE_KEY = `${c.hackathonName}_${c.iteration}_hackerRegistrationData`;
export const HACKER_REGISTRATION_RESUME_STORAGE_KEY =
"hackerRegistrationResume";
export const NOT_LOCAL_SCHOOL = "NOT_LOCAL_SCHOOL";
diff --git a/apps/web/src/lib/utils/server/redis.ts b/apps/web/src/lib/utils/server/redis.ts
index 21bef46b2..673d132ba 100644
--- a/apps/web/src/lib/utils/server/redis.ts
+++ b/apps/web/src/lib/utils/server/redis.ts
@@ -5,7 +5,7 @@ import { Redis } from "@upstash/redis";
const redis = Redis.fromEnv();
export function includeEnvPrefix(key: string) {
- return `${c.hackathonName}_${c.itteration}_${process.env.HK_ENV}_${key}`;
+ return `${c.hackathonName}_${c.iteration}_${process.env.HK_ENV}_${key}`;
}
export async function redisSAdd(key: string, value: string): Promise {
diff --git a/packages/config/hackkit.config.ts b/packages/config/hackkit.config.ts
index 5957964c9..4da10508c 100644
--- a/packages/config/hackkit.config.ts
+++ b/packages/config/hackkit.config.ts
@@ -807,7 +807,7 @@ const softwareExperienceOptions = [
const c = {
hackathonName: "HackKit",
- itteration: "I",
+ iteration: "I",
siteUrl: "https://rowdyhacks.org", // Do not have a trailing slash
defaultMetaDataDescription: "Your Metadata Description Here",
rsvpDefaultLimit: 500,
@@ -956,12 +956,11 @@ const c = {
foreground: "#ffffff",
checked: false,
},
- // Why is the checked set to a color?
mlh: {
title: "MLH",
- color: "#ffffff",
- foreground: "#E73426",
- checked: "#E73426",
+ color: "#E73426",
+ foreground: "#ffffff",
+ checked: false,
},
admin: {
title: "Organizer",
@@ -971,8 +970,8 @@ const c = {
},
super_admin: {
title: "Organizer",
- foreground: "#ffffff",
color: "#f59e0b",
+ foreground: "#ffffff",
checked: true,
},
},
@@ -985,7 +984,7 @@ const c = {
const staticUploads = {
bucketHost: "/api/upload/resume/view",
- bucketResumeBaseUploadUrl: `${c.hackathonName}/${c.itteration}/resumes`,
+ bucketResumeBaseUploadUrl: `${c.hackathonName}/${c.iteration}/resumes`,
} as const;
// Its important that this is kept in sync with the database schema.