Skip to content

Commit

Permalink
Revert Promise.resolve (#3243)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored Feb 5, 2025
1 parent f273117 commit 817bc9c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions auth-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.8.1",
"version": "2.8.2",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 817bc9c

Please sign in to comment.