From e40d5348ccbd4e574e7ffef38a9c6319e424e1d6 Mon Sep 17 00:00:00 2001 From: iscarelli Date: Fri, 19 Jun 2026 15:51:59 -0300 Subject: [PATCH 1/2] fix: use local logo asset instead of dead external URLs The Manager referenced its logo and favicon from https://evolution-api.com/files/evo/* which now return HTTP 404 after the project's domain rebrand, leaving the logo and favicon broken in the UI. Point all references to the asset already bundled in the repo (public/assets/images/evolution-logo.png), removing the external dependency. Affected: index.html (favicon), pages/Home.tsx, pages/Login/index.tsx, pages/Login/LicenseCallback.tsx, components/sidebar.tsx. Note: the theme branches now resolve to the same local asset; a dedicated white variant for the dark theme can be re-added later. Co-Authored-By: Claude Opus 4.8 --- index.html | 2 +- src/components/sidebar.tsx | 4 ++-- src/pages/Home.tsx | 4 ++-- src/pages/Login/LicenseCallback.tsx | 4 ++-- src/pages/Login/index.tsx | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index b3dbc03..faaca04 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - + Evolution Manager diff --git a/src/components/sidebar.tsx b/src/components/sidebar.tsx index 5f20098..eaec05a 100644 --- a/src/components/sidebar.tsx +++ b/src/components/sidebar.tsx @@ -44,8 +44,8 @@ function SidebarShell({ children, footer }: { children: React.ReactNode; footer? const { theme } = useTheme(); const logoSrc = theme === "dark" - ? "https://evolution-api.com/files/evo/evolution-logo-white.svg" - : "https://evolution-api.com/files/evo/evolution-logo.svg"; + ? "/assets/images/evolution-logo.png" + : "/assets/images/evolution-logo.png"; return (