Skip to content

Commit

Permalink
fix progress indicator
Browse files Browse the repository at this point in the history
Amy Chen authored and Amy Chen committed Mar 7, 2024
1 parent 72d3c0b commit 57a4530
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Landing.js
Original file line number Diff line number Diff line change
@@ -323,11 +323,10 @@ export default class Landing extends Component {
Timeout();
this.pingProcessProgress();
let result = {};
executeElm(this.state.collector, this.state.resourceType)
Promise.all([executeElm(this.state.collector, this.state.resourceTypes)])
.then((response) => {
//set result from data from EPIC
// let fhirData = response[0];
let fhirData = response;
//set FHIR results
let fhirData = response[0];
result["Summary"] = fhirData ? { ...fhirData["Summary"] } : {};
this.setSectionVis();
const { sectionFlags, flaggedCount } = this.processSummary(

0 comments on commit 57a4530

Please sign in to comment.