From b2095e98fb60fd7ea3e6cfa498ebe855d0e5a26f Mon Sep 17 00:00:00 2001 From: Imbus Date: Sun, 5 Nov 2023 20:26:55 +0100 Subject: [PATCH] Removed some forgotten debug printing --- client-solid/src/api.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/client-solid/src/api.ts b/client-solid/src/api.ts index 6b9660f..9619362 100644 --- a/client-solid/src/api.ts +++ b/client-solid/src/api.ts @@ -24,9 +24,7 @@ export async function getPosts(): Promise { export async function getPost(id: string): Promise { const res = await fetch(`/api/posts/${id}`); - console.log(res) const data = await res.json(); - console.log(data) return data; }