Skip to content

Commit

Permalink
fix: method name type
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bedon committed Sep 12, 2023
1 parent c96c9c9 commit a287d76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Portfolio/ImpactDashboard/YourDonations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default {
if (this.totalDonations > this.limit) {
let offset = this.limit;
while (offset < this.totalDonations) {
this.getRemainDonations(transactionFilters, offset)
this.getRemainingDonations(transactionFilters, offset)
.then(donations => {
const remainDonations = donations?.data?.my?.transactions?.values ?? [];
this.currentYearDonations += this.filterAndSumDonations(
Expand All @@ -208,7 +208,7 @@ export default {
whenVisible() {
this.fetchAsyncData();
},
getRemainDonations(transactionFilters, offset) {
getRemainingDonations(transactionFilters, offset) {
return this.apollo.query({
query: gql`query yourDonations ($filters: TransactionSearchFilters, $limit: Int, $offset: Int) {
my {
Expand Down

0 comments on commit a287d76

Please sign in to comment.