From 02c2753a8003a36fdf9a06a4a8e6d10524426a5d Mon Sep 17 00:00:00 2001 From: Raphael Le Goaller Date: Sun, 15 Dec 2024 12:42:13 +0100 Subject: [PATCH] Fix Team Logos not loading (#1057) Team logos currently do not load because the URL does not reflect the location of team logos. This should fix it --- frontend/src/components/modals/team_update_modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/modals/team_update_modal.tsx b/frontend/src/components/modals/team_update_modal.tsx index 82c975b0d..3289346e5 100644 --- a/frontend/src/components/modals/team_update_modal.tsx +++ b/frontend/src/components/modals/team_update_modal.tsx @@ -27,7 +27,7 @@ import { DropzoneButton } from '../utils/file_upload'; function TeamLogo({ team }: { team: TeamInterface | null }) { if (team == null || team.logo_path == null) return null; - return ; + return ; } export default function TeamUpdateModal({