diff --git a/src/pages/home.tsx b/src/pages/home.tsx index f2d2f7a..44dd7af 100644 --- a/src/pages/home.tsx +++ b/src/pages/home.tsx @@ -49,6 +49,10 @@ const DelegationCampaign = React.lazy(() => import('components/DelegationCampaig export function Home() { const activeKey: ActiveEnum = useMemo(() => { + // Dev + if (rootUrl.includes('thechaindata')) { + return ActiveEnum.DelegatorCampaign; + } if (rootUrl.includes('seekers')) { return ActiveEnum.Challenge; }