fix: 이제 BettingDetail 출력 변경

- BettingInfo의 candidate가 array를 보장하지 않음
- info가 html이 아니어도 출력
This commit is contained in:
2022-04-25 01:30:54 +09:00
parent 9b8ad5384e
commit 29f555bbca
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export type BettingInfo = {
reqInheritancePoint: boolean;
openYearMonth: number;
closeYearMonth: number;
candidates: SelectItem[];
candidates: Record<number, SelectItem>;
winner?: number[];
}