diff --git a/packages/www/lib/utils/index.tsx b/packages/www/lib/utils/index.tsx index 1a3a954115..fe83172637 100644 --- a/packages/www/lib/utils/index.tsx +++ b/packages/www/lib/utils/index.tsx @@ -236,7 +236,13 @@ export const CARD_OPTIONS = { }; export function isStaging(): boolean { - return true; + return ( + typeof window !== "undefined" && + (window.location.hostname.includes("livepeer.monster") || + window.location.hostname.includes("livepeer.vercel.app") || + window.location.hostname.includes("livepeerorg.vercel.app") || + window.location.hostname.includes("livepeerorg.now.sh")) + ); } export function isDevelopment(): boolean {