Skip to content

Commit

Permalink
rename vars
Browse files Browse the repository at this point in the history
  • Loading branch information
hornilla-jowelyn committed Oct 27, 2023
1 parent c365327 commit b08991f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@ export const createAccountSlice: StateCreator<
jwt
),
])
.then(async ([response1, response2]) => {
.then(async ([executableResponse, pendingResponse]) => {
set(
produce((state: MCState) => {
state.pages.account.statistics.transactions.data =
response1.count + response2.count;
executableResponse.count + pendingResponse.count;
})
);
})
Expand Down

0 comments on commit b08991f

Please sign in to comment.