diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx index 904a5f6dfc..bd32bfa34d 100644 --- a/packages/website/ts/index.tsx +++ b/packages/website/ts/index.tsx @@ -76,10 +76,7 @@ render( - {/* TODO: Remove this once we ship the jobs page*/} - {utils.shouldShowJobsPage() && ( - - )} + @@ -129,13 +126,7 @@ render( path={`${WebsiteLegacyPaths.Deployer}/:version?`} component={LazySolCompilerDocumentation} /> - {/* TODO: Remove this once we ship the jobs page*/} - {utils.shouldShowJobsPage() ? ( - - ) : ( - - )} - + diff --git a/packages/website/ts/utils/utils.ts b/packages/website/ts/utils/utils.ts index 439af5e4b4..39bbd404cf 100644 --- a/packages/website/ts/utils/utils.ts +++ b/packages/website/ts/utils/utils.ts @@ -363,9 +363,6 @@ export const utils = { } return Environments.UNKNOWN; }, - shouldShowJobsPage(): boolean { - return utils.isDevelopment() || utils.isStaging() || utils.isDogfood(); - }, getEthToken(tokenByAddress: TokenByAddress): Token { return utils.getTokenBySymbol(constants.ETHER_TOKEN_SYMBOL, tokenByAddress); },