fix: add +page.server.ts loaders for all event module sub-pages

This commit is contained in:
AlacrisDevs
2026-02-07 13:09:18 +02:00
parent 202f0fe9a1
commit f9dc950394
7 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};

View File

@@ -0,0 +1,5 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ parent }) => {
return await parent();
};