diff --git a/auth-web/package-lock.json b/auth-web/package-lock.json index 7731227cc..113e76b5c 100644 --- a/auth-web/package-lock.json +++ b/auth-web/package-lock.json @@ -1,12 +1,12 @@ { "name": "auth-web", - "version": "2.8.1", + "version": "2.8.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auth-web", - "version": "2.8.1", + "version": "2.8.2", "dependencies": { "@bcrs-shared-components/base-address": "2.0.3", "@bcrs-shared-components/bread-crumb": "1.0.8", diff --git a/auth-web/package.json b/auth-web/package.json index bfe08894f..f57608997 100644 --- a/auth-web/package.json +++ b/auth-web/package.json @@ -1,6 +1,6 @@ { "name": "auth-web", - "version": "2.8.1", + "version": "2.8.2", "appName": "Auth Web", "sbcName": "SBC Common Components", "private": true, 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 212cd4038..da721afca 100644 --- a/auth-web/src/components/auth/account-settings/product/ProductPayment.vue +++ b/auth-web/src/components/auth/account-settings/product/ProductPayment.vue @@ -301,7 +301,9 @@ export default defineComponent({ const setup = async () => { state.isLoading = true resetCurrentSelectedProducts() - Promise.all([getOrgPayments(), getProductPaymentMethods(), loadProduct()]) + await getOrgPayments() + await getProductPaymentMethods() + await loadProduct() // if staff need to load product fee also if (state.canManageAccounts) { state.orgProductsFees = await syncCurrentAccountFees(currentOrganization.value.id)