Skip to content

Commit 1fe0aa2

Browse files
authored
Merge pull request #2192 from CodeNow/fix-on-prem
Fix on-prem falg
2 parents dd0302c + 9dc3c36 commit 1fe0aa2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/services/currentOrgService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function currentOrg(
3636

3737
org.isBillingVisible = function () {
3838
// Hide when onPrem or when FF is on
39-
return !(keypather.get(org, 'poppa.isOnPrem') || featureFlags.flags.hideBilling);
39+
return !(keypather.get(org, 'poppa.attrs.isOnPrem') || featureFlags.flags.hideBilling);
4040
};
4141

4242
return org;

0 commit comments

Comments
 (0)