From 01e09680c89e8c5a87c9a452c6108762a223776a Mon Sep 17 00:00:00 2001 From: wilson Date: Thu, 7 May 2026 21:43:44 +0100 Subject: [PATCH] fix: [frontend] type of Date to string for incoming request --- frontend/src/routes/app/adventures/AdventuresList.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/routes/app/adventures/AdventuresList.svelte b/frontend/src/routes/app/adventures/AdventuresList.svelte index b583a87..3250840 100644 --- a/frontend/src/routes/app/adventures/AdventuresList.svelte +++ b/frontend/src/routes/app/adventures/AdventuresList.svelte @@ -6,7 +6,7 @@ id: string; title: string; description: string | null; - created_at: Date; + created_at: string; genres: string[]; vibes: string[]; };