From 64727348720419210daf1a3167b79cb24f951ef8 Mon Sep 17 00:00:00 2001 From: dal Date: Thu, 3 Jul 2025 14:28:41 -0700 Subject: [PATCH 1/2] Update apps/server/src/api/v2/slack/handler.ts Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- apps/server/src/api/v2/slack/handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/api/v2/slack/handler.ts b/apps/server/src/api/v2/slack/handler.ts index c7264b3c8..aed724805 100644 --- a/apps/server/src/api/v2/slack/handler.ts +++ b/apps/server/src/api/v2/slack/handler.ts @@ -354,7 +354,7 @@ export class SlackHandler { } // Parse request body - const body = await c.req.json(); + const body = await c.req.json().catch(() => ({})); const parsed = UpdateIntegrationSchema.safeParse(body); if (!parsed.success) { From f82177156d681b912a0148dd68d53e6bce7ab12a Mon Sep 17 00:00:00 2001 From: dal Date: Thu, 3 Jul 2025 14:29:31 -0700 Subject: [PATCH 2/2] Update .cursor/rules/global.mdc Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- .cursor/rules/global.mdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cursor/rules/global.mdc b/.cursor/rules/global.mdc index fd985ee75..9d13f13d7 100644 --- a/.cursor/rules/global.mdc +++ b/.cursor/rules/global.mdc @@ -610,7 +610,7 @@ NEVER proactively create documentation files (*.md) or README files. Only create ### Linting Rules - Always use `pnpm run check` or `pnpm run check:fix` -- **Rule: `i dont' want caldue to ever run a biome lint fix only biome lint`** +- **Rule: `I don't want Claude to ever run a biome lint fix only biome lint`** - This means ONLY use `pnpm run check` (linting without auto-fixing) - Do NOT use `pnpm run check:fix` - Claude should understand to ONLY run lint checks, never auto-fix