Fix cache load race condition bug

This commit is contained in:
Tanner Collin 2020-01-28 04:20:48 +00:00
parent 72f1043952
commit 02b73a8b14

View File

@ -24,8 +24,10 @@ class Article extends React.Component {
localForage.getItem(id)
.then(
(value) => {
if (value) {
this.setState({ story: value });
}
}
);
fetch('/api/' + id)