diff --git a/ts/features/payments/common/utils/index.ts b/ts/features/payments/common/utils/index.ts index dfcb76cf360..d6def46dd09 100644 --- a/ts/features/payments/common/utils/index.ts +++ b/ts/features/payments/common/utils/index.ts @@ -152,8 +152,8 @@ export const getSortedPspList = ( default: return _.orderBy( pspList, - ["onUs", "taxPayerFee", "pspBusinessName"], - ["asc", "asc", "asc"] + [psp => (psp.onUs ? 1 : 0), "taxPayerFee", "pspBusinessName"], + ["desc", "asc", "asc"] ); } };