mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
Avoid Redux dev tools warning
This commit is contained in:
parent
b63cec5cbd
commit
2ea015c504
2 changed files with 5 additions and 1 deletions
|
|
@ -15,6 +15,7 @@
|
|||
### Bug Fixes
|
||||
|
||||
- Fix bug where resizing the window such that the current layout cannot fit on the page, while also scrolled down the page, would cause the layout to be recentered out of view.
|
||||
- Avoid a console log from Redux Dev Tools.
|
||||
|
||||
## 2.1.2 [CURRENT]
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,10 @@ import {
|
|||
|
||||
// TODO: Move to demo
|
||||
const compose = composeWithDevTools({
|
||||
actionsBlacklist: [UPDATE_TIME_ELAPSED, STEP_MARQUEE],
|
||||
// @ts-ignore A previous name of this was `actionsBlacklist`, but it was
|
||||
// renamed to `actionsDenylist` in Redux 4.1.0 but I'd rather not upgrade the
|
||||
// types.
|
||||
actionsDenylist: [UPDATE_TIME_ELAPSED, STEP_MARQUEE],
|
||||
});
|
||||
|
||||
export default function createWebampStore(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue