diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e0b73a83b3..b02e0b033db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased (develop) +- added: Added Infinite ramp plugin. + ## 4.39.0 (staging) - added: BitsOfGold and LibertyX ramp plugins. diff --git a/src/plugins/ramps/rampConstraints.ts b/src/plugins/ramps/rampConstraints.ts index 23f9c6c320f..e5b5b00756f 100644 --- a/src/plugins/ramps/rampConstraints.ts +++ b/src/plugins/ramps/rampConstraints.ts @@ -109,9 +109,4 @@ export function* constraintGenerator( if (params.rampPluginId === 'banxa') { yield params.paymentType !== 'ach' } - - // Disable Infinite pending Master Services Agreement approval - if (params.rampPluginId === 'infinite') { - yield false - } }