Skip to content

Commit

Permalink
remove superfluous spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
gobravedave committed Nov 22, 2023
1 parent 62b06a8 commit 8e7d121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/data/banking/LendingRate.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const LendingRate = (props) => {
{!!applicationFrequency && <div>Applied <Duration prefix="every" value={applicationFrequency}/></div>}
{!!interestPaymentDue && <div>Interest Payment {translateInterestPaymentDue(interestPaymentDue)}</div>}
{!!repaymentType && <div>Repayment Type {translateRepaymentType(repaymentType)}</div>}
{!!loanPurpose && <div>Loan Purpose {translateloanPurpose (loanPurpose)}</div>}
{!!loanPurpose && <div>Loan Purpose {translateloanPurpose(loanPurpose)}</div>}
{
!!tiers && tiers.length > 0 &&
<div>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/dict.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const translateInterestPaymentDue = (interestPaymentDue) => interestPayme

export const translateRepaymentType = (repaymentType) => repaymentTypeDict[repaymentType]

export const translateloanPurpose = (loanPurpose) => loanPurposeDict [loanPurpose]
export const translateloanPurpose = (loanPurpose) => loanPurposeDict[loanPurpose]

export const translateEligibilityType = (eligibilityType) => eligibilityTypeDict[eligibilityType]

Expand Down

0 comments on commit 8e7d121

Please sign in to comment.