You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that when the component first loads, it calls the same truth API call twice: fetchDataUpdatePlot() calls fetchAsOfTruth() and then fetchCurrentTruth() even though the underlying dates are the initially the same (App.state.selected_as_of_date and App.state.current_date, respectively). This issue is for a fetchDataUpdatePlot() optimization that copies results from fetchAsOfTruth() (App.state.as_of_truth) to App.state.current_truth instead of calling fetchCurrentTruth().
The text was updated successfully, but these errors were encountered:
I noticed that when the component first loads, it calls the same truth API call twice:
fetchDataUpdatePlot()
callsfetchAsOfTruth()
and thenfetchCurrentTruth()
even though the underlying dates are the initially the same (App.state.selected_as_of_date
andApp.state.current_date
, respectively). This issue is for afetchDataUpdatePlot()
optimization that copies results fromfetchAsOfTruth()
(App.state.as_of_truth
) toApp.state.current_truth
instead of callingfetchCurrentTruth()
.The text was updated successfully, but these errors were encountered: