diff --git a/apps/meteor/ee/client/sidebar/footer/SidebarFooterWatermark.tsx b/apps/meteor/ee/client/sidebar/footer/SidebarFooterWatermark.tsx index 3e85b86b45d77..549b4ca9df39c 100644 --- a/apps/meteor/ee/client/sidebar/footer/SidebarFooterWatermark.tsx +++ b/apps/meteor/ee/client/sidebar/footer/SidebarFooterWatermark.tsx @@ -8,8 +8,8 @@ import { useLicense } from '../../../../client/hooks/useLicense'; export const SidebarFooterWatermark = (): ReactElement | null => { const t = useTranslation(); - const { data: { license, activeModules = [], trial: isTrial = false } = {}, isLoading, isError } = useLicense(); - const [{ name: planName }] = license?.information?.tags ?? [{ name: 'Community' }]; + const { data: { activeModules = [], trial: isTrial = false, tags } = {}, isLoading, isError } = useLicense(); + const [{ name: planName }] = tags ?? [{ name: 'Community' }]; const isWatermarkHidden = !isTrial && activeModules.includes('hide-watermark');