mirror of
https://github.com/logto-io/logto.git
synced 2025-01-27 21:39:16 -05:00
fix(console): remove userinfo endpoint on application details page (#1391)
This commit is contained in:
parent
3ceb746b14
commit
a837d793d0
1 changed files with 7 additions and 16 deletions
|
@ -12,22 +12,13 @@ type Props = {
|
||||||
|
|
||||||
const AdvancedSettings = ({ oidcConfig }: Props) => {
|
const AdvancedSettings = ({ oidcConfig }: Props) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<FormField title="admin_console.application_details.token_endpoint">
|
||||||
<FormField title="admin_console.application_details.token_endpoint">
|
<CopyToClipboard
|
||||||
<CopyToClipboard
|
className={styles.textField}
|
||||||
className={styles.textField}
|
value={oidcConfig.token_endpoint}
|
||||||
value={oidcConfig.token_endpoint}
|
variant="border"
|
||||||
variant="border"
|
/>
|
||||||
/>
|
</FormField>
|
||||||
</FormField>
|
|
||||||
<FormField title="admin_console.application_details.user_info_endpoint">
|
|
||||||
<CopyToClipboard
|
|
||||||
className={styles.textField}
|
|
||||||
value={oidcConfig.userinfo_endpoint}
|
|
||||||
variant="border"
|
|
||||||
/>
|
|
||||||
</FormField>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue