Skip to content

Commit

Permalink
revert account-balances migration
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed Jun 19, 2024
1 parent f9fddf6 commit 4fa9457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/accountDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const useAccountStore = defineStore('account', () => {

async function fetchAccountTokens({ accountId, queryParameters, limit } = {}) {
rawAccountTokens.value = null
const defaultParameters = `/v3/aex9/account-balances/${accountId}?limit=${limit ?? 10}`
const defaultParameters = `/v2/aex9/account-balances/${accountId}?limit=${limit ?? 10}`
const { data } = await axios.get(`${MIDDLEWARE_URL}${queryParameters || defaultParameters}`)
rawAccountTokens.value = data

Expand Down

0 comments on commit 4fa9457

Please sign in to comment.