feat(chat-room): 채팅 쿼터 구매 기능 추가

This commit is contained in:
Yu Sung
2025-09-04 06:57:02 +09:00
parent 20801bdcfb
commit f98f625200
4 changed files with 82 additions and 1 deletions

View File

@@ -132,7 +132,7 @@ struct ChatRoomView: View {
if viewModel.showQuotaNoticeView {
ChatQuotaNoticeItemView(remainingTime: viewModel.countdownText) {
viewModel.purchaseChatQuota()
}
.id(viewModel.messages.count)
.padding(.bottom, 12)
@@ -230,6 +230,7 @@ struct ChatRoomView: View {
}
}
.onAppear {
viewModel.getMemberInfo()
viewModel.enterRoom(roomId: roomId)
}
.onDisappear {