From 21d41818163635e25e4855f99758191eb716bc22 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Wed, 26 Feb 2025 15:29:10 +0100 Subject: [PATCH] Add Image models and clean up test code structure Introduced `ImageCreate` and `Image` models to handle image-related data in the backend. Improved the organization and readability of the testing notebook by consolidating and formatting code into distinct sections with markdown cells. --- frontend/src/components/ResultGrid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ResultGrid.tsx b/frontend/src/components/ResultGrid.tsx index 20b81cc..2820ad6 100644 --- a/frontend/src/components/ResultGrid.tsx +++ b/frontend/src/components/ResultGrid.tsx @@ -45,7 +45,7 @@ const ResultGrid: React.FC = ({ activePgroup }) => { console.log('Resolved OpenAPI.BASE:', OpenAPI.BASE); // Set the base path for images dynamically - setBasePath(`${OpenAPI.BASE}/images/`); + setBasePath(`${OpenAPI.BASE}/`); }, []); useEffect(() => {