diff --git a/hwe/ts/PageVote.vue b/hwe/ts/PageVote.vue
index c85e9c4e..cf2fc070 100644
--- a/hwe/ts/PageVote.vue
+++ b/hwe/ts/PageVote.vue
@@ -23,6 +23,10 @@
}}개 선택 가능 )
+
+
+ | 게시자 |
+ {{ currentVote.voteInfo.opener ?? '[SYSTEM]' }} |
diff --git a/hwe/ts/defs/API/Vote.ts b/hwe/ts/defs/API/Vote.ts
index 54a7712a..f0dddd5b 100644
--- a/hwe/ts/defs/API/Vote.ts
+++ b/hwe/ts/defs/API/Vote.ts
@@ -3,6 +3,7 @@ import type { ValidResponse } from "@/util/callSammoAPI";
export type VoteInfo = {
id: number;
title: string;
+ opener?: string;
multipleOptions: number;
startDate: string;
endDate?: string;