diff --git a/src/components/Lend/DonationCTA.vue b/src/components/Lend/DonationCTA.vue
deleted file mode 100644
index 2f3a67d9fa..0000000000
--- a/src/components/Lend/DonationCTA.vue
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
-
-
- These loans are popular and we've run out.
-
-
-
-
-
-
Carolina, David G, David K
-
-
-
Help our team source more loans
-
-
Sourcing loans isn’t free for us. Carolina, David, and the rest of the team work hard to screen the loans on our site and work with lending partners to support high quality loans that often include additional services such as insurance and business training for borrowers. We rely on our generous donors to help them continue their work.
-
- Donate to help Carolina and team
-
-
-
-
-
-
-
-
-
diff --git a/src/components/Lend/LoanSearch/LoanSearchInterface.vue b/src/components/Lend/LoanSearch/LoanSearchInterface.vue
index f304b5cca0..3c605bd272 100644
--- a/src/components/Lend/LoanSearch/LoanSearchInterface.vue
+++ b/src/components/Lend/LoanSearch/LoanSearchInterface.vue
@@ -127,10 +127,6 @@
-
-
-
-
@@ -153,7 +149,6 @@ import { isNumber } from '@/util//numberUtils';
import LoanSearchFilterChips from '@/components/Lend/LoanSearch/LoanSearchFilterChips';
import LoanSearchSavedSearch from '@/components/Lend/LoanSearch/LoanSearchSavedSearch';
import filterConfig from '@/util/loanSearch/filterConfig';
-import DonationCTA from '@/components/Lend/DonationCTA';
import { gql } from '@apollo/client';
import KvButton from '~/@kiva/kv-components/vue/KvButton';
import KvLightbox from '~/@kiva/kv-components/vue/KvLightbox';
@@ -176,7 +171,6 @@ export default {
name: 'LoanSearchInterface',
inject: ['apollo', 'cookieStore'],
components: {
- DonationCTA,
LoanSearchFilterChips,
KvButton,
LoanSearchFilter,
@@ -330,9 +324,6 @@ export default {
return prev || filterConfig.config[key].showSavedSearch(this.loanSearchState);
}, false);
},
- hasOnePageOfLoans() {
- return this.totalCount <= this.loanSearchState.pageLimit;
- }
},
methods: {
async fetchFacets(loanSearchState = {}) {
diff --git a/src/pages/Lend/LoanChannelCategoryControl.vue b/src/pages/Lend/LoanChannelCategoryControl.vue
index c784d60b06..1a55028a69 100644
--- a/src/pages/Lend/LoanChannelCategoryControl.vue
+++ b/src/pages/Lend/LoanChannelCategoryControl.vue
@@ -135,8 +135,6 @@
{{ totalCount }} loans
-
-
@@ -153,7 +151,6 @@ import numeral from 'numeral';
import logReadQueryError from '@/util/logReadQueryError';
import loanChannelPageQuery from '@/graphql/query/loanChannelPage.graphql';
import loanChannelQueryMapMixin from '@/plugins/loan-channel-query-map';
-import DonationCTA from '@/components/Lend/DonationCTA';
import KvPagination from '@/components/Kv/KvPagination';
import PromoGridLoanCardExp from '@/components/LoanCards/PromoGridLoanCardExp';
import KvLoadingOverlay from '@/components/Kv/KvLoadingOverlay';
@@ -269,7 +266,6 @@ export default {
KvLoadingOverlay,
QuickFilters,
HelpmeChooseWrapper,
- DonationCTA,
PromoGridLoanCardExp,
KvClassicLoanCardContainer,
EmptyState,
@@ -399,9 +395,6 @@ export default {
}
return url;
},
- hasOnePageOfLoans() {
- return this.totalCount <= this.limit;
- },
showHelpMeChooseFeat() {
const queryMapFLSS = getFLSSQueryMap(this.loanChannelQueryMap, this.targetedLoanChannelURL);
const hasSortBy = !!queryMapFLSS?.sortBy;