From 155e13c0648086788173784e01921f5fafdf7576 Mon Sep 17 00:00:00 2001 From: Charles Zhao Date: Fri, 26 Jan 2024 09:39:59 +0800 Subject: [PATCH] fix(console): only request protected app domain if it is cloud and has dev features enabled (#5312) --- .../pages/Applications/components/ProtectedAppForm/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx b/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx index e61e002e8..868967463 100644 --- a/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx +++ b/packages/console/src/pages/Applications/components/ProtectedAppForm/index.tsx @@ -9,6 +9,7 @@ import { toast } from 'react-hot-toast'; import { useTranslation } from 'react-i18next'; import useSWRImmutable from 'swr/immutable'; +import { isCloud, isDevFeaturesEnabled } from '@/consts/env'; import Button, { type Props as ButtonProps } from '@/ds-components/Button'; import FormField from '@/ds-components/FormField'; import TextInput from '@/ds-components/TextInput'; @@ -35,7 +36,9 @@ function ProtectedAppForm({ hasRequiredLabel, onCreateSuccess, }: Props) { - const { data } = useSWRImmutable('api/systems/application'); + const { data } = useSWRImmutable( + isDevFeaturesEnabled && isCloud && 'api/systems/application' + ); const defaultDomain = data?.protectedApps.defaultDomain ?? ''; const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' }); const {