From daf321a9f88559a99f35b9aee37b442f1a5853b6 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Mon, 6 Jan 2025 21:52:53 +0100 Subject: [PATCH 1/2] Fix typo Update light.tsx --- src/theme/light.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/light.tsx b/src/theme/light.tsx index d342105b..a8eb578c 100644 --- a/src/theme/light.tsx +++ b/src/theme/light.tsx @@ -22,7 +22,7 @@ const lightTheme = { }, palette: paletteOptions, typography: typographyOptions, - // diferrent from raw shadows + // different from raw shadows // boxShadows: boxShadowOptions, components: { MuiContainer: { From 38c7def2c3d8932563f477a5334f7e115b492211 Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Mon, 6 Jan 2025 21:53:59 +0100 Subject: [PATCH 2/2] Fix typo Update fetchFlag.ts --- src/app/events/ethcon-korea/actions/fetchFlag.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/events/ethcon-korea/actions/fetchFlag.ts b/src/app/events/ethcon-korea/actions/fetchFlag.ts index 76d7a079..27dc77ed 100644 --- a/src/app/events/ethcon-korea/actions/fetchFlag.ts +++ b/src/app/events/ethcon-korea/actions/fetchFlag.ts @@ -1,7 +1,7 @@ import { fetchBase } from "."; type SubmitFlagResultType = { - status: "correct" | "incorret"; + status: "correct" | "Incorrect"; message: "Correct" | "Incorrect"; };