Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lmd59 committed Oct 14, 2024
1 parent d1bf0bb commit 7377be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fhir-response-util/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ function remove(_req, res, json) {
res.set('ETag', json.deleted);
}

if(json && (json.resourceType === 'Bundle' || json.resourceType === 'OperationOutcome')){
if (json && (json.resourceType === 'Bundle' || json.resourceType === 'OperationOutcome')) {
res.status(200).json(json);
}else{
} else {
res.status(204).end();
}
}
Expand Down

0 comments on commit 7377be2

Please sign in to comment.