{
{props.done.length === 0 ? (
- 과거 참여했던 방이 없습니다
+ 과거 참여했던 방이 없습니다
) : (
{props.done
diff --git a/src/pages/Search/SideResult.jsx b/src/pages/Search/SideResult.jsx
index f6347eb19..eea42010a 100644
--- a/src/pages/Search/SideResult.jsx
+++ b/src/pages/Search/SideResult.jsx
@@ -156,7 +156,7 @@ const SideResult = (props) => {
/>
{rooms.length === 0 ? (
- 검색 결과가 없습니다
+ 검색 결과가 없습니다
) : (
<>
{rooms
@@ -197,7 +197,7 @@ const SideResult = (props) => {
setSortOption={setSortOption}
/>
{rooms.length === 0 ? (
- 검색 결과가 없습니다
+ 검색 결과가 없습니다
) : (
<>
{rooms
diff --git a/src/tools/theme.ts b/src/tools/theme.ts
index b6bba3b05..19c700eee 100644
--- a/src/tools/theme.ts
+++ b/src/tools/theme.ts
@@ -74,12 +74,6 @@ const theme = {
fontWeight: 700,
lineHeight: "23px",
},
- font24: {
- fontSize: 24,
- letterSpacing: -0.75,
- fontWeight: 900,
- lineHeight: "28px",
- },
font28: {
fontSize: 28,
letterSpacing: -1,
diff --git a/src/types/event2023fall.d.ts b/src/types/event2023fall.d.ts
index cbd80f8b9..b93ea3982 100644
--- a/src/types/event2023fall.d.ts
+++ b/src/types/event2023fall.d.ts
@@ -40,11 +40,3 @@ export type Transaction = {
comment: string;
doneat: Date;
};
-
-export type Leader = {
- nickname: string;
- profileImageUrl: string;
- ticket1Amount: number;
- ticket2Amount: number;
- probability: number;
-};