diff --git a/app/(client)/room/[id]/VoteUI.tsx b/app/(client)/room/[id]/VoteUI.tsx index d3ce910..1b1fb10 100644 --- a/app/(client)/room/[id]/VoteUI.tsx +++ b/app/(client)/room/[id]/VoteUI.tsx @@ -210,7 +210,7 @@ const VoteUI = () => { userId: item.userId, roomId: item.roomId, roomName: item.roomName, - topicName: item.storyName, + storyName: item.storyName, scale: item.scale, votes: item.votes, }; @@ -221,7 +221,7 @@ const VoteUI = () => { userId: roomFromDb.userId, roomId: roomFromDb.id, roomName: roomFromDb.roomName, - topicName: storyNameText, + storyName: storyNameText, scale: roomScale, votes: votesFromDb.map((vote) => { return { @@ -337,7 +337,7 @@ const VoteUI = () => {

- Topic: {roomFromDb.storyName} + Story: {roomFromDb.storyName}