fix SonarQube issue, mainly type annotations

This commit is contained in:
2025-08-01 10:29:34 +02:00
parent 5a06c99fb7
commit 5927f1dacd
4 changed files with 10 additions and 10 deletions

View File

@@ -2,7 +2,7 @@ import { getVorgaenge } from '$lib/server/vorgangService';
import type { PageServerLoad } from '../../(token-based)/view/$types';
export const load: PageServerLoad = async () => {
const vorgangList = await getVorgaenge();
const vorgangList = getVorgaenge();
return {
vorgangList