diff --git a/src/utils/requests/transactions.ts b/src/utils/requests/transactions.ts index b3f9253..aef0ef7 100644 --- a/src/utils/requests/transactions.ts +++ b/src/utils/requests/transactions.ts @@ -41,7 +41,8 @@ export const getTransactionsHistory = async (): Promise => { log.http("getTransactionsHistory |", JSON.stringify(response, null, 2)); - return response; + // TODO: Update this when the api is fixed, response should not be reversed + return response.reverse(); } catch (error) { log.error("getTransactionsHistory |", error); throw error;