Skip to content

Commit

Permalink
feat(lint): everything
Browse files Browse the repository at this point in the history
  • Loading branch information
golobitch committed Aug 15, 2024
1 parent 4429f06 commit 0563339
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ describe('OutgoingPayment Resolvers', (): void => {
metadata
quote {
id
estimatedExchangeRate
createdAt
expiresAt
}
Expand Down Expand Up @@ -243,6 +244,9 @@ describe('OutgoingPayment Resolvers', (): void => {
id: payment.quote.id,
createdAt: payment.quote.createdAt.toISOString(),
expiresAt: payment.quote.expiresAt.toISOString(),
estimatedExchangeRate: payment.quote.estimatedExchangeRate
? parseFloat(payment.quote.estimatedExchangeRate?.toString())
: undefined,
__typename: 'Quote'
},
createdAt: payment.createdAt.toISOString(),
Expand Down

0 comments on commit 0563339

Please sign in to comment.