diff --git a/frontend/src/components/Logo.tsx b/frontend/src/components/Logo.tsx index 44fe2e4..5473af8 100644 --- a/frontend/src/components/Logo.tsx +++ b/frontend/src/components/Logo.tsx @@ -1,4 +1,5 @@ const Logo = ({ height, width }: { height: number; width: number }) => { - return logo; + const webroot = process.env.WEBROOT || ""; + return logo; }; export default Logo;