From ab6148a7e78ef7ab28288a114f41115fb682eeee Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Wed, 26 Feb 2025 15:27:35 +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 | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/ResultGrid.tsx b/frontend/src/components/ResultGrid.tsx index 695e1e2..20b81cc 100644 --- a/frontend/src/components/ResultGrid.tsx +++ b/frontend/src/components/ResultGrid.tsx @@ -75,7 +75,6 @@ const ResultGrid: React.FC = ({ activePgroup }) => { const primaryImage = imageList[0]; // Define the base path to your backend images directory - const basePath = "https://localhost:8000/"; const imageUrl = basePath + primaryImage.filepath; console.log("Local relative path:", imageUrl);