From 27624465469f62185b026e87da7fd10d455a00a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=84=EC=A7=84=ED=98=B8?= Date: Thu, 8 Feb 2024 22:49:35 +0900 Subject: [PATCH] feat: make topicSide type to TOPIC_A or TOPIC_B --- src/interfaces/api/topic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/api/topic.ts b/src/interfaces/api/topic.ts index fc7fd60..8cbecbd 100644 --- a/src/interfaces/api/topic.ts +++ b/src/interfaces/api/topic.ts @@ -5,7 +5,7 @@ export const CHOICE_OPTIONS = { interface TopicResponse { topicId: number; - topicSide: string; + topicSide: 'TOPIC_A' | 'TOPIC_B'; topicTitle: string; deadline: number | null; // 1702914494 voteCount: number;