Skip to content

Instantly share code, notes, and snippets.

@fielding
Last active May 1, 2020 17:13
Show Gist options
  • Save fielding/231f54eebe827d5655b9e8c99baad51c to your computer and use it in GitHub Desktop.
Save fielding/231f54eebe827d5655b9e8c99baad51c to your computer and use it in GitHub Desktop.
potent snipped from dashboard
// was
if (isEmbedsLoading && !isEmbedsLoading) {
this.handleResetLocalChanges();
}
// probably the intended
if (isEmbedsLoading && !prevProps.isEmbedsLoading) {
this.handleResetLocalChanges();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment