0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

feat(console): hide the check readme button for the email service connector (#4119)

This commit is contained in:
Xiao Yijun 2023-07-05 12:31:05 +08:00 committed by GitHub
parent 244537ca03
commit 460fb940f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,6 +155,9 @@ function ConnectorDetails() {
{data.type === ConnectorType.Email && data.usage !== undefined && (
<EmailUsage usage={data.usage} />
)}
{/* Note: hide the 'Check README' button for the email service connector since it's provided by Logto and no setup guide is needed */}
{data.connectorId !== ServiceConnector.Email && (
<>
<Button
title="connector_details.check_readme"
size="large"
@ -172,6 +175,8 @@ function ConnectorDetails() {
>
<Markdown className={styles.readme}>{data.readme}</Markdown>
</Drawer>
</>
)}
<ActionMenu
buttonProps={{ icon: <More className={styles.moreIcon} />, size: 'large' }}
title={t('general.more_options')}