0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): only request protected app domain if it is cloud and has dev features enabled (#5312)

This commit is contained in:
Charles Zhao 2024-01-26 09:39:59 +08:00 committed by GitHub
parent aee90d0a6f
commit 155e13c064
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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<ProtectedAppsDomainConfig>('api/systems/application');
const { data } = useSWRImmutable<ProtectedAppsDomainConfig>(
isDevFeaturesEnabled && isCloud && 'api/systems/application'
);
const defaultDomain = data?.protectedApps.defaultDomain ?? '';
const { t } = useTranslation(undefined, { keyPrefix: 'admin_console' });
const {