diff --git a/.github/workflows/pr-title-spell-check.yml b/.github/workflows/pr-title-spell-check.yml index 03b5a8758..62ea93590 100644 --- a/.github/workflows/pr-title-spell-check.yml +++ b/.github/workflows/pr-title-spell-check.yml @@ -17,8 +17,8 @@ jobs: - name: Store PR title in a file shell: bash - env: - TITLE: ${{ github.event.pull_request.title }} + env: + TITLE: ${{ github.event.pull_request.title }} run: echo $TITLE > pr_title.txt - name: Spell check diff --git a/.github/workflows/release-new-version.yml b/.github/workflows/release-new-version.yml index d71709dcd..01ca10b53 100644 --- a/.github/workflows/release-new-version.yml +++ b/.github/workflows/release-new-version.yml @@ -10,7 +10,6 @@ name: Release a new hyperswitch version # group: ${{ github.workflow }}-${{ github.ref }} # cancel-in-progress: true - on: pull_request_target: types: diff --git a/src/screens/HyperSwitch/Connectors/ConnectorList.res b/src/screens/HyperSwitch/Connectors/ConnectorList.res index cd11ab29c..150f1bd7c 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