Skip to content

Commit

Permalink
fix: update date-fns imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosp1011 committed Jan 9, 2024
1 parent 23c131d commit 5c71a1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/wallet/backend/src/auth/service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { User } from '@/user/model'
import { Unauthorized } from '@/errors'
import addSeconds from 'date-fns/addSeconds'
import { addSeconds } from 'date-fns'
import type { Env } from '@/config/env'
import type { Session } from '@/session/model'
import type { UserService } from '@/user/service'
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/backend/src/incomingPayment/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { RafikiClient } from '@/rafiki/rafiki-client'
import { Transaction } from '@/transaction/model'
import { extractUuidFromUrl, transformAmount } from '@/utils/helpers'
import { Amount, Asset } from '@/rafiki/backend/generated/graphql'
import { add } from 'date-fns'
import { add, Duration } from 'date-fns'
import { Logger } from 'winston'
import axios from 'axios'
import { Env } from '@/config/env'
Expand Down

0 comments on commit 5c71a1a

Please sign in to comment.