fix(chat-room): 채팅방

- 쿼터 상태 조회, 쿼터 구매 API URL 변경
This commit is contained in:
Yu Sung
2025-09-10 12:04:01 +09:00
parent 20fa1db718
commit a2f81bd348
3 changed files with 13 additions and 13 deletions

View File

@@ -277,7 +277,7 @@ final class ChatRoomViewModel: ObservableObject {
func purchaseChatQuota() {
isLoading = true
repository.purchaseChatQuota()
repository.purchaseChatQuota(roomId: roomId)
.sink { result in
switch result {
case .finished:
@@ -402,7 +402,7 @@ final class ChatRoomViewModel: ObservableObject {
private func checkQuotaStatus() {
isLoading = true
repository.getChatQuotaStatus()
repository.getChatQuotaStatus(roomId: roomId)
.sink { result in
switch result {
case .finished: