diff --git a/auth-web/src/components/auth/account-settings/product/ProductPayment.vue b/auth-web/src/components/auth/account-settings/product/ProductPayment.vue index aa1180cf0..1aa56ee1b 100644 --- a/auth-web/src/components/auth/account-settings/product/ProductPayment.vue +++ b/auth-web/src/components/auth/account-settings/product/ProductPayment.vue @@ -251,8 +251,8 @@ export default defineComponent({ // check for role and account can have service fee (GOVM and GOVN account) return currentUser?.roles?.includes(Role.StaffManageAccounts) && state.isVariableFeeAccount }), - canChangePayment: computed((): boolean => { - return currentMembership.membershipTypeCode !== MembershipType.Coordinator + isCoordinator: computed((): boolean => { + return currentMembership.membershipTypeCode === MembershipType.Coordinator }), /** * Return any sub-product that has a status indicating activity diff --git a/auth-web/src/components/auth/common/Product.vue b/auth-web/src/components/auth/common/Product.vue index f5582b894..f7be4f7fa 100644 --- a/auth-web/src/components/auth/common/Product.vue +++ b/auth-web/src/components/auth/common/Product.vue @@ -9,7 +9,7 @@ :data-test="`div-product-${productDetails.code}`" >
-
+