Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements to DQ and DR PRs #1528

Draft
wants to merge 4 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(cq): tested changes local
Refs: #1379
  • Loading branch information
jonahkaye committed Jan 28, 2024
commit f7038d3bedf364741dfb1648cb54fc5cdb72a022
2 changes: 1 addition & 1 deletion packages/core/src/external/aws/s3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export class S3Utils {
): Promise<string[]> {
const params = {
Bucket: bucketName,
prefix: prefix,
Prefix: prefix,
};

try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
import { Patient } from "../../../domain/patient";
import { MPI } from "../../../mpi/mpi";
import { patientMPIToPartialPatient } from "../../../mpi/shared";
import { toFHIR as convertPatientToFHIR } from "../../fhir/patient";
import { toFHIR as convertPatientToFHIR } from "../../fhir/patient/index";
import { validateFHIRAndExtractPatient } from "./validating-pd";
import {
XDSRegistryError,
Expand Down
Loading