Skip to content

Commit

Permalink
fix: EventDateData 타입 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sooyeoniya committed Aug 16, 2024
1 parent df54ecd commit 6db3ea4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/components/Notice/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ interface EventDateDetails {
export type EventType = "rush" | "lottery";

export interface EventDateData {
[key: EventType]: EventDateDetails;
rush?: EventDateDetails;
lottery?: EventDateDetails;
}

const mapToEventDateDetails = (
Expand Down

0 comments on commit 6db3ea4

Please sign in to comment.