mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
fix: filter pro request (#6022)
This commit is contained in:
parent
a56e5dd55a
commit
735a6722b5
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue