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

fix(console): special application name for admin console (#997)

* fix(console): special application name for admin console

* fix: cr
This commit is contained in:
Wang Sijie 2022-05-31 11:49:15 +08:00 committed by GitHub
parent 8530e249aa
commit a0ff90058c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
import { Application } from '@logto/schemas';
import { adminConsoleApplicationId, Application } from '@logto/schemas';
import React from 'react';
import useSWR from 'swr';
@ -7,9 +7,14 @@ type Props = {
};
const ApplicationName = ({ applicationId }: Props) => {
const { data } = useSWR<Application>(`/api/applications/${applicationId}`);
const isAdminConsole = applicationId === adminConsoleApplicationId;
return <span>{data?.name ?? '-'}</span>;
const { data } = useSWR<Application>(!isAdminConsole && `/api/applications/${applicationId}`);
const name = isAdminConsole ? 'Admin Console' : data?.name;
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
return <span>{name || '-'}</span>;
};
export default ApplicationName;