Wrong feature flag

This commit is contained in:
Fang-Pen Lin
2025-11-04 13:14:03 -08:00
parent 18c13317ae
commit c38985a533

View File

@@ -453,7 +453,7 @@ export const CreateProfileModal = ({ isOpen, onClose, profile, mode = "create" }
>
<SelectItem value="api">API</SelectItem>
<SelectItem value="est">EST</SelectItem>
{envConfig.isAcmeFeatureEnabled && <SelectItem value="acme">ACME</SelectItem>}
{envConfig.ACME_FEATURE_ENABLED && <SelectItem value="acme">ACME</SelectItem>}
</Select>
</FormControl>
)}