mirror of
https://github.com/logto-io/logto.git
synced 2025-02-17 22:04:19 -05:00
Merge pull request #6987 from logto-io/yemq-saml-guide-card-remove-feature-guard
chore: remove SAML app guide card feature guard
This commit is contained in:
parent
e41e0c99e3
commit
a213856ea2
2 changed files with 1 additions and 4 deletions
|
@ -9,7 +9,6 @@ const metadata = Object.freeze({
|
||||||
isThirdParty: false,
|
isThirdParty: false,
|
||||||
skipGuideAfterCreation: true,
|
skipGuideAfterCreation: true,
|
||||||
isCloud: true,
|
isCloud: true,
|
||||||
isDevFeature: true,
|
|
||||||
} satisfies GuideMetadata);
|
} satisfies GuideMetadata);
|
||||||
|
|
||||||
export default metadata;
|
export default metadata;
|
||||||
|
|
|
@ -68,9 +68,7 @@ function GuideCard({ data, onClick, hasBorder, hasButton, hasPaywall, isBeta }:
|
||||||
<div className={styles.tagWrapper}>
|
<div className={styles.tagWrapper}>
|
||||||
{hasPaywall &&
|
{hasPaywall &&
|
||||||
(target === ApplicationType.SAML ? (
|
(target === ApplicationType.SAML ? (
|
||||||
isEnterprisePlan ? null : (
|
<FeatureTag isEnterprise isVisible={!isEnterprisePlan} />
|
||||||
<FeatureTag isVisible isEnterprise />
|
|
||||||
)
|
|
||||||
) : (
|
) : (
|
||||||
<FeatureTag isVisible plan={latestProPlanId} />
|
<FeatureTag isVisible plan={latestProPlanId} />
|
||||||
))}
|
))}
|
||||||
|
|
Loading…
Add table
Reference in a new issue