diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-07-07 07:08:35 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-07-07 07:08:35 +0800 |
commit | d22cff09765dd0f886f8933d2f7d3d53515c6beb (patch) | |
tree | 8ac73534f4711de36dac02bfad03e8292d93190d /packages/website | |
parent | 269b56b907f8af49e5d92bdcf3aedbc9af03e368 (diff) | |
download | dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.tar dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.tar.gz dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.tar.bz2 dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.tar.lz dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.tar.xz dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.tar.zst dexon-sol-tools-d22cff09765dd0f886f8933d2f7d3d53515c6beb.zip |
Shim shouldShowPortalV2 to always return true
Diffstat (limited to 'packages/website')
-rw-r--r-- | packages/website/ts/utils/utils.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/website/ts/utils/utils.ts b/packages/website/ts/utils/utils.ts index 6af7f5613..8c76a7592 100644 --- a/packages/website/ts/utils/utils.ts +++ b/packages/website/ts/utils/utils.ts @@ -359,7 +359,9 @@ export const utils = { }, isDogfood, shouldShowPortalV2(): boolean { - return this.isDevelopment() || this.isStaging() || this.isDogfood(); + // return this.isDevelopment() || this.isStaging() || this.isDogfood(); + // TODO: Remove this method entirely after launch. + return true; }, shouldShowJobsPage(): boolean { return this.isDevelopment() || this.isStaging() || this.isDogfood(); |