From 3b7fb42774c8920a5010eeb03e550dc1b5d676d0 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 29 Aug 2025 12:11:20 +0200 Subject: [PATCH] Remove trailing slash on meili endpoint --- src/pages/Index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 610f682..09dae5c 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -44,7 +44,7 @@ interface Scratch { content: string; } -const MEILISEARCH_ENDPOINT = 'https://meili.site.quack-lab.dev/'; +const MEILISEARCH_ENDPOINT = 'https://meili.site.quack-lab.dev'; const MEILISEARCH_API_KEY = '31qXgGbQ3lT4DYHQ0TOKpMzh7wcigs7agHyxP5Fz6T6D61xsvNr24uO8ifndKOfM'; const NOTE_INDEX = 'notes'; const SCRATCH_INDEX = 'scratch';