Skip to content

Commit

Permalink
fix: hide server upgrade banner on SaaS
Browse files Browse the repository at this point in the history
  • Loading branch information
pwilson77 committed Jul 31, 2024
1 parent a87db49 commit 98ebc80
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 98ebc80

Please sign in to comment.