Skip to content

Commit

Permalink
Update base image logic
Browse files Browse the repository at this point in the history
  • Loading branch information
glanzz committed May 13, 2024
1 parent bfbcfa8 commit 7aa3bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/great-green/src/components/landing-page/about_us.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useTranslation } from "react-i18next";

const AboutCard = () => {
let base = "/"
if (window.location.href.indexOf("great-green") === -1) {
if (window.location.href.indexOf("great-green") !== -1) {
base = "/great-green/"
}
return (
Expand Down

0 comments on commit 7aa3bea

Please sign in to comment.