Skip to content

Commit 0fa642f

Browse files
committed
Fix lint
1 parent 07e0baa commit 0fa642f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

apps/sim/lib/copilot/chat-streaming.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ function resolvePendingChatStream(chatId: string): void {
4949
* (including onComplete and Go-side persistence). Returns immediately if
5050
* no stream is active. Gives up after `timeoutMs`.
5151
*/
52-
export async function waitForPendingChatStream(
53-
chatId: string,
54-
timeoutMs = 5_000
55-
): Promise<void> {
52+
export async function waitForPendingChatStream(chatId: string, timeoutMs = 5_000): Promise<void> {
5653
const entry = pendingChatStreams.get(chatId)
5754
if (!entry) return
5855

0 commit comments

Comments
 (0)