feat(character-detail) 대화하기 버튼 액션 추가

- 채팅방 생성 API 호출
This commit is contained in:
Yu Sung
2025-09-04 01:31:36 +09:00
parent 154ca01a74
commit 96cabbc6a7
6 changed files with 55 additions and 3 deletions

View File

@@ -251,6 +251,9 @@ struct ContentView: View {
case .characterDetail(let characterId):
CharacterDetailView(characterId: characterId)
case .chatRoom(let id):
ChatRoomView(roomId: id)
default:
EmptyView()
.frame(width: 0, height: 0, alignment: .topLeading)