Yevhenii
Yevhenii

Reputation: 115

Why did React stop running after saving changes to the code?

During the process of creating a React application, automatic page refresh worked, but today after another day of working on the code, I noticed that when saving any changes in the code, the browser stopped responding to them, and you need to click on refresh the page in order for the changes to become visible. There are no errors in the console.

What could be the problem?

Git repo: link

Upvotes: 0

Views: 646

Answers (1)

Rafael Abusleme
Rafael Abusleme

Reputation: 134

There is an issue with some versions of react-script packages that insert an unnecessary document body in the DOM. If this is the problem you can solve it here Github Issue.

Upvotes: 3

Related Questions