refactor(observability): remove console.log from tags proxy and enforce no-console lint rule

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-17 09:45:49 +02:00
parent 96ea7e6815
commit 59b18039ed
2 changed files with 11 additions and 2 deletions

View File

@@ -24,7 +24,6 @@ export const GET: RequestHandler = async ({ url, fetch }) => {
}
const data = await response.json();
console.log('Tags Data', data);
// 4. Daten zurück an den Browser schicken
return json(data);