fix: change require path

This commit is contained in:
metamethods 2024-12-31 21:40:56 -08:00
parent e6a38e2a0b
commit c939fb80d3

View File

@ -1,6 +1,6 @@
import type { PageServerLoad } from './$types'; import type { PageServerLoad } from './$types';
import { fetchData } from '$lib/server/fetchData'; import { fetchRooms } from '$lib/server/yukiotoko';
export const load: PageServerLoad = async ({ fetch }) => { export const load: PageServerLoad = async ({ fetch }) => {
return await fetchData(); return await fetchRooms();
}; };