Skip to content

Commit

Permalink
Merge pull request #1369 from PrefectHQ/chore-eol-banner-2023-03-14
Browse files Browse the repository at this point in the history
Chore: Add check on `hide_freeze_banner`; add standard license checks again
  • Loading branch information
znicholasbrown committed Mar 14, 2023
2 parents 431d216 + a43ea35 commit 9bae672
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/layouts/SubPageNav.vue
Expand Up @@ -49,7 +49,10 @@ export default {
return (
this.canShowBanners &&
this.isCloud &&
(this.planType('FREE') || this.planType('STARTER'))
!this.license.terms?.hide_freeze_banner &&
(this.planType('FREE') ||
this.planType('STARTER') ||
this.planType('STANDARD'))
)
}
},
Expand Down

0 comments on commit 9bae672

Please sign in to comment.