Skip to content

Commit

Permalink
Merge pull request #685 from gravitl/develop-patch
Browse files Browse the repository at this point in the history
fix: hide server upgrade banner on SaaS
  • Loading branch information
pwilson77 authored Jul 31, 2024
2 parents a87db49 + 98ebc80 commit f94736b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/DashboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function DashboardPage(props: PageProps) {
};

useEffect(() => {
if (!isServerEE && !store.serverStatus.status?.is_on_trial_license) {
if (!isServerEE && !isSaasBuild && !store.serverStatus.status?.is_on_trial_license) {
setShowUpgradeAlert(true);
} else {
setShowUpgradeAlert(false);
Expand Down

0 comments on commit f94736b

Please sign in to comment.