Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed endless loop in hot module reloading (#1214)
## Problem - Fixes endless loop when touching the `client/storage.js` file ## Details - The hot module replacement checks the module dependencies - I'm not 100% sure with the solution but it seems that there is a dependency cycle `storage/index.js` -> `storage/DASDPage.jsx` -> `storage/index.js` ## Solution - Break the dependency cycle by directly loading the files, not via the `storage/index.js` module ## Testing - Tested manually, works fine
- Loading branch information