now working

This commit is contained in:
2023-12-23 17:25:05 +01:00
parent d9070b6ef2
commit 82e08a679b
19 changed files with 248 additions and 99 deletions

View File

@ -1,8 +1,5 @@
export const load = async ({ fetch }) => {
const response = await fetch(`/api/guides`);
const guides = await response.json();
return {
guides
};
return { guides };
};