fix: filter pro request (#6022)

This commit is contained in:
heheer 2025-12-03 08:35:31 +08:00 committed by GitHub
parent a56e5dd55a
commit 735a6722b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,12 +15,12 @@ import { webPushTrack } from '@/web/common/middle/tracks/utils';
const TeamPlanStatusCard = () => {
const { t } = useTranslation();
const { teamPlanStatus } = useUserStore();
const { operationalAd, loadOperationalAd } = useSystemStore();
const { operationalAd, loadOperationalAd, feConfigs } = useSystemStore();
const router = useRouter();
// Load data
useEffect(() => {
if (!operationalAd) {
if (!operationalAd && feConfigs?.isPlus) {
loadOperationalAd();
}
if (operationalAd?.id) {