Shim shouldShowPortalV2 to always return true

This commit is contained in:
fragosti
2018-07-06 16:08:35 -07:00
parent 269b56b907
commit d22cff0976

View File

@@ -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();