remove unused locals parameter

This commit is contained in:
2025-11-05 09:18:05 +01:00
parent fd907c9851
commit 808b56934c
5 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
import { getVorgaenge } from '$lib/server/vorgangService';
import { json } from '@sveltejs/kit';
export async function GET({ locals }) {
export async function GET() {
const vorgaenge = getVorgaenge();
return new Response(JSON.stringify(vorgaenge), {