From 2c9408b1df53d767fc2adc131c402e30aab0efd7 Mon Sep 17 00:00:00 2001 From: Max Mayfield Date: Mon, 2 Mar 2026 05:11:37 +0000 Subject: [PATCH] Fix indentation on registerWebhookSecretRoutes call --- products/03-alert-intelligence/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/products/03-alert-intelligence/src/index.ts b/products/03-alert-intelligence/src/index.ts index 9e9ce2d..ecb903b 100644 --- a/products/03-alert-intelligence/src/index.ts +++ b/products/03-alert-intelligence/src/index.ts @@ -23,7 +23,7 @@ app.get('/health', async () => ({ status: 'ok', service: 'dd0c-alert' })); registerAuthRoutes(app, config.JWT_SECRET, pool); registerWebhookRoutes(app); - registerWebhookSecretRoutes(app); +registerWebhookSecretRoutes(app); registerIncidentRoutes(app); registerNotificationRoutes(app);