Remove commented out code

This commit is contained in:
Max Nuding 2023-04-02 13:20:11 +02:00
parent 8a37738ca3
commit ddef60f012
Signed by: phlaym
GPG Key ID: A06651BAB6777237

View File

@ -3,7 +3,6 @@ import type { PageLoad } from './$types';
export const load = (async ({ fetch }) => {
const p = await fetch('/');
//const posts: Post[] = await p.json();
return {
posts: await p.json() as Post[]
};