Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix: use a different style import
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmeyer committed Mar 5, 2020
1 parent 8827df1 commit a6e97ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/clients/db/PatientRepository.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { patients } from 'config/pouchdb'
import PatientRepository from 'clients/db/PatientRepository'
import Patient from 'model/Patient'
import * as shortid from 'shortid'
import shortid from 'shortid'
import { getTime, isAfter } from 'date-fns'

const uuidV4Regex = /^[A-F\d]{8}-[A-F\d]{4}-4[A-F\d]{3}-[89AB][A-F\d]{3}-[A-F\d]{12}$/i
Expand Down
2 changes: 1 addition & 1 deletion src/clients/db/PatientRepository.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as shortid from 'shortid'
import shortid from 'shortid'
import Patient from '../../model/Patient'
import Repository from './Repository'
import { patients } from '../../config/pouchdb'
Expand Down

0 comments on commit a6e97ea

Please sign in to comment.