From c723e4919dfcc805c4cf53006ed67a48a920600c Mon Sep 17 00:00:00 2001 From: Kenzo Date: Wed, 17 Dec 2025 21:51:22 +0100 Subject: [PATCH] chore: Remove outdated comment in auth route JSON schema definition --- backend/src/routes/auth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/routes/auth.ts b/backend/src/routes/auth.ts index 8b737bd..e218c68 100644 --- a/backend/src/routes/auth.ts +++ b/backend/src/routes/auth.ts @@ -6,7 +6,6 @@ import { eq } from 'drizzle-orm'; import { GiteaService } from '../services/gitea.service.js'; import { env } from '../config/env.js'; -// Use explicit JSON schema for Fastify route validation to avoid provider issues const callbackQueryJsonSchema = { type: 'object', required: ['code', 'state'],