diff --git a/src/screens/HyperSwitch/Connectors/ConnectorList.res b/src/screens/HyperSwitch/Connectors/ConnectorList.res index 68efafa0b..8d1fa13c4 100644 --- a/src/screens/HyperSwitch/Connectors/ConnectorList.res +++ b/src/screens/HyperSwitch/Connectors/ConnectorList.res @@ -10,9 +10,13 @@ module NewProcessorCards = { ->Recoil.useRecoilValueFromAtom ->LogicUtils.safeParse ->FeatureFlagUtils.featureFlagType - let connectorsAvailableForIntegration = isPayoutFlow + + let connectorsAvailableForIntegration = featureFlagDetails.testLiveMode + ? ConnectorUtils.connectorListForLive + : isPayoutFlow ? ConnectorUtils.payoutConnectorList : ConnectorUtils.connectorList + let unConfiguredConnectors = connectorsAvailableForIntegration->Js.Array2.filter(total => configuredConnectors->Js.Array2.find(item => item === total)->Belt.Option.isNone