Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLin0991 committed Jul 14, 2023
1 parent 59d901a commit 75f0a1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
stateContactSchema,
submissionDocumentSchema,
submissionTypeSchema,
} from 'app-web/src/common-code/proto/healthPlanFormDataProto/zodSchemas'
} from '../../../../app-web/src/common-code/proto/healthPlanFormDataProto/zodSchemas'

const contractFormDataSchema = z.object({
programIDs: z.array(z.string()),
Expand Down
4 changes: 2 additions & 2 deletions services/app-api/src/domain-models/healthPlanPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import { Contract } from './contractAndRates/contractAndRatesZodSchema'
import {
SubmissionDocument,
UnlockedHealthPlanFormDataType,
} from 'app-web/src/common-code/healthPlanFormDataType'
} from '../../../app-web/src/common-code/healthPlanFormDataType'
import {
toProtoBuffer,
toDomain,
} from 'app-web/src/common-code/proto/healthPlanFormDataProto'
} from '../../../app-web/src/common-code/proto/healthPlanFormDataProto'

// submissionStatus computes the current status of the submission based on
// the submit/unlock info on its revisions.
Expand Down

0 comments on commit 75f0a1f

Please sign in to comment.