From f94820f45e8d49f4df6349be0868dd04c3471b08 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 1 Nov 2025 16:03:39 +0100 Subject: [PATCH] Fix favicon not showing in webview --- web/public/FavIcon.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/public/FavIcon.tsx b/web/public/FavIcon.tsx index ad3c1b05..a4e71bb5 100644 --- a/web/public/FavIcon.tsx +++ b/web/public/FavIcon.tsx @@ -4,8 +4,8 @@ import Image from "next/image"; type FavIconProps = React.SVGProps; const FavIcon: React.FC = ({ className }) => ( - Compass logo + // Need full domain for favicon to work properly on Webview + Compass logo ); export default FavIcon; -