Skip to content

Commit

Permalink
some code chore
Browse files Browse the repository at this point in the history
  • Loading branch information
jabahum committed Jan 31, 2024
1 parent a6d67ba commit feb83b1
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"packages/*"
],
"scripts": {
"start": "openmrs develop --backend http://localhost:8080 --sources 'packages/esm-*-app'",
"start": "openmrs develop --backend http://194.163.171.253:8282 --sources 'packages/esm-*-app'",
"ci:publish": "lerna publish from-package --yes",
"ci:prepublish": "lerna publish from-package --no-git-reset --yes --dist-tag next",
"release": "lerna version --no-git-tag-version",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ export const CareProgramSubmissionAction: PostSubmissionAction = {
const encounterLocation = encounter.location['uuid'];
const patientUuid = encounter.patient['identifier'][0]['uuid'];

console.info('CarePrograms-------->', JSON.stringify(encounter, null, 2));

// only do this the first time the form is entered
if (sessionMode !== 'enter') {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ export const LabSubmissionAction: PostSubmissionAction = {
const encounter = encounters[0];
const encounterLocation = encounter.location['uuid'];

console.info(JSON.stringify(encounter));

// only do this the first time the form is entered
if (sessionMode !== 'enter') {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import { ProgramEnrollmentPayload } from './utils';

export async function createProgramEnrollment(payload: ProgramEnrollmentPayload) {
const abortController = new AbortController();

console.info('payload---->', payload);
return openmrsFetch(`/ws/rest/v1/programenrollment`, {
method: 'POST',
headers: {
Expand Down

0 comments on commit feb83b1

Please sign in to comment.