diff --git a/containers/clusterForms/shared/setupForm/index.tsx b/containers/clusterForms/shared/setupForm/index.tsx
index 66e23687..e64b7e9c 100644
--- a/containers/clusterForms/shared/setupForm/index.tsx
+++ b/containers/clusterForms/shared/setupForm/index.tsx
@@ -53,9 +53,11 @@ const SetupForm: FunctionComponent = () => {
installType,
values,
clusterMap,
- } = useAppSelector(({ api, installation }) => ({
+ showCloudflareCaIssuerField,
+ } = useAppSelector(({ api, installation, featureFlags }) => ({
...api,
...installation,
+ showCloudflareCaIssuerField: featureFlags.flags.showCloudflareCaIssuerField,
}));
const {
@@ -274,15 +276,17 @@ const SetupForm: FunctionComponent = () => {
onErrorText="Invalid token."
onChange={handleCloudfareToken}
/>
-
+ {showCloudflareCaIssuerField && (
+
+ )}
>
)}