Remove one empty line between methods

This commit is contained in:
Shi Bai 2025-03-04 21:07:54 -08:00
parent 9f25d652d5
commit cbae8d5ec2

View file

@ -541,7 +541,6 @@ class ChatThreadService extends Disposable implements IChatThreadService {
return Object.keys(allThreads ?? {}).sort((threadId1, threadId2) => allThreads[threadId1].lastModified > allThreads[threadId2].lastModified ? -1 : 1)
}
_addMessageToThread(threadId: string, message: ChatMessage) {
const { allThreads } = this.state