We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60dfb2a commit fd3432fCopy full SHA for fd3432f
packages/cli/src/server/api/index.ts
@@ -307,7 +307,7 @@ export function createApiRouter(
307
);
308
});
309
310
- // Add a simple ping endpoint for connection status checks
+ // Check if the server is running
311
router.get('/ping', (_req, res) => {
312
res.setHeader('Content-Type', 'application/json');
313
res.send(
packages/client/src/components/connection-status.tsx
@@ -28,7 +28,7 @@ export default function ConnectionStatus() {
28
};
29
30
const getStatusText = () => {
31
- if (isLoading) return 'Checking...';
+ if (isLoading) return 'Connecting...';
32
return connected ? 'Connected' : 'Disconnected';
33
34
0 commit comments