Skip to content

Commit

Permalink
fix: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
creed-victor committed Jan 10, 2024
1 parent 5916af1 commit 0fbed7f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const translation = translations.boltz.send.confirmationScreens;

export const getTitle = (
txStatus: StatusType,
BoltzStatus: BoltzStatusType,
boltzStatus: BoltzStatusType,
) => {
if (!BoltzStatus) {
if (!boltzStatus) {
return t(translation.titles.default);
}
if (txStatus === StatusType.error) {
Expand All @@ -27,7 +27,7 @@ export const getTitle = (
BoltzStatusType.paid,
BoltzStatusType.txClaimed,
BoltzStatusType.settled,
].includes(BoltzStatus)
].includes(boltzStatus)
) {
return t(translation.titles.success);
}
Expand Down

0 comments on commit 0fbed7f

Please sign in to comment.