We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c17a56 commit e95e986Copy full SHA for e95e986
src/conversation/remote-conversation.ts
@@ -81,9 +81,7 @@ export class RemoteConversation {
81
}
82
83
async conversationStats(): Promise<ConversationStats> {
84
- const response = await this.client.get<ConversationInfo>(
85
- `/api/conversations/${this.id}`
86
- );
+ const response = await this.client.get<ConversationInfo>(`/api/conversations/${this.id}`);
87
return response.data.stats;
88
89
0 commit comments