Skip to content

Commit 0c0af8b

Browse files
committed
console: Fix condition
1 parent 84a6307 commit 0c0af8b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • pkg/webui/console/containers/gateway-onboarding-form/gateway-provisioning-form/gateway-claim-form-section

pkg/webui/console/containers/gateway-onboarding-form/gateway-provisioning-form/gateway-claim-form-section/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ const GatewayClaimFormSection = () => {
135135
name="authenticated_identifiers.authentication_code"
136136
tooltipId={tooltipIds.CLAIM_AUTH_CODE}
137137
component={Input}
138-
description={activeOwnerTokenType === 'fleet' ? sharedMessages.fleetTokenInfo : undefined}
138+
description={
139+
isManaged && activeOwnerTokenType === 'fleet' ? sharedMessages.fleetTokenInfo : undefined
140+
}
139141
descriptionValues={{
140142
Link: val => (
141143
<Link.Anchor secondary href={`${smUrl}/dashboard`} external>

0 commit comments

Comments
 (0)