diff --git a/client-report/src/components/app.js b/client-report/src/components/app.js index ae6ed1c47..2617aa73c 100644 --- a/client-report/src/components/app.js +++ b/client-report/src/components/app.js @@ -151,7 +151,7 @@ class App extends React.Component { getData() { const reportPromise = this.getReport(report_id); // debug initial report data fetch - reportPromise.then((report) => console.log("report recieved:", report)) + reportPromise.then((report) => console.log("report received:", report)) const mathPromise = reportPromise.then((report) => { return this.getMath(report.conversation_id); });