From 1c9a0916e951d170af9f3eeecf31deee03f97eec Mon Sep 17 00:00:00 2001 From: gman Date: Wed, 25 Oct 2023 22:41:02 +0300 Subject: [PATCH] url --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index f021ba2..669a47a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -27,7 +27,7 @@ const router = createBrowserRouter([ path: "/article/:id", element:
, loader: async ({ params }) => { - return fetch(`https://strapi.iamonlyherefortheicecream.gq/api/articles?populate=*&filters[id][$eq]=${params.id}`); + return fetch(`http://strapi.litmusmap.ru/api/articles?populate=*&filters[id][$eq]=${params.id}`); }, } ])