diff --git a/src/pickers/PaymentPlanPicker.js b/src/pickers/PaymentPlanPicker.js index 150bf87..ae63868 100644 --- a/src/pickers/PaymentPlanPicker.js +++ b/src/pickers/PaymentPlanPicker.js @@ -10,12 +10,15 @@ class PaymentPlanPicker extends Component { } queryParams = () => { - const { periodicity, withDeleted = false } = this.props; + const { periodicity, benefitPlanId, withDeleted = false } = this.props; let params = []; params.push(`isDeleted: ${withDeleted}`); if (!!periodicity) { params.push(`periodicity: ${periodicity}`); } + if (!!benefitPlanId) { + params.push(`benefitPlanId: "${benefitPlanId}"`); + } return params; }