Skip to content

Commit 43ef8dd

Browse files
Resolve copilot comments
1 parent c3962e4 commit 43ef8dd

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/frontend/src/pages/HomePage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ const HomePage: React.FC = () => {
111111
} finally {
112112
dispatch(setIsLoadingTeam(false));
113113
}
114-
showToast(`${team.name} team has been selected with ${team.agents.length} agents`, 'success');
115114
} else {
116115
showToast('No team is currently selected', 'info');
117116
}

src/frontend/src/services/WebSocketService.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class WebSocketService {
1010
private reconnectDelay = 1000; // 1s base, exponential: 1s, 2s, 4s, 8s, 16s
1111
private listeners: Map<string, Set<(message: StreamMessage) => void>> = new Map();
1212
private planSubscriptions: Set<string> = new Set();
13-
private reconnectTimer: NodeJS.Timeout | null = null;
13+
private reconnectTimer: ReturnType<typeof setTimeout> | null = null;
1414
private isConnecting = false;
1515
private intentionalDisconnect = false;
1616
private lastPlanId: string | undefined;

0 commit comments

Comments
 (0)