Skip to content

Commit fd3432f

Browse files
committed
cleanup
1 parent 60dfb2a commit fd3432f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/cli/src/server/api/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ export function createApiRouter(
307307
);
308308
});
309309

310-
// Add a simple ping endpoint for connection status checks
310+
// Check if the server is running
311311
router.get('/ping', (_req, res) => {
312312
res.setHeader('Content-Type', 'application/json');
313313
res.send(

packages/client/src/components/connection-status.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function ConnectionStatus() {
2828
};
2929

3030
const getStatusText = () => {
31-
if (isLoading) return 'Checking...';
31+
if (isLoading) return 'Connecting...';
3232
return connected ? 'Connected' : 'Disconnected';
3333
};
3434

0 commit comments

Comments
 (0)