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:
parent
aee90d0a6f
commit
155e13c064
1 changed files with 4 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue