diff --git a/code/utils/deploy-pokedex.js b/code/utils/deploy-pokedex.js index 71b23f1..3202c13 100644 --- a/code/utils/deploy-pokedex.js +++ b/code/utils/deploy-pokedex.js @@ -251,7 +251,11 @@ async function deployLocal(config) { if (!frontendHealthy) throw new Error('Frontend health check failed'); console.log(' ✅ Frontend healthy'); - const backendHealthy = await healthCheck('localhost', config.backendPort, '/health'); + const backendHealthy = await healthCheck( + 'localhost', + config.backendPort, + '/health' + ); const backendHealthy = await healthCheck('localhost', config.backendPort); // Backend might need more time if (!backendHealthy) throw new Error('Backend health check failed');