Commit 735a6722 by heheer Committed by GitHub

fix: filter pro request (#6022)

parent a56e5dd5
...@@ -15,12 +15,12 @@ import { webPushTrack } from '@/web/common/middle/tracks/utils'; ...@@ -15,12 +15,12 @@ import { webPushTrack } from '@/web/common/middle/tracks/utils';
const TeamPlanStatusCard = () => { const TeamPlanStatusCard = () => {
const { t } = useTranslation(); const { t } = useTranslation();
const { teamPlanStatus } = useUserStore(); const { teamPlanStatus } = useUserStore();
const { operationalAd, loadOperationalAd } = useSystemStore(); const { operationalAd, loadOperationalAd, feConfigs } = useSystemStore();
const router = useRouter(); const router = useRouter();
// Load data // Load data
useEffect(() => { useEffect(() => {
if (!operationalAd) { if (!operationalAd && feConfigs?.isPlus) {
loadOperationalAd(); loadOperationalAd();
} }
if (operationalAd?.id) { if (operationalAd?.id) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment