1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

Fixed: Series posters flickering when width changes repeatedly

Closes #6311
This commit is contained in:
Mark McDowall
2024-01-12 23:17:29 -08:00
committed by Mark McDowall
parent 91f33c670e
commit 53cf530893
3 changed files with 18 additions and 3 deletions
@@ -1,8 +1,9 @@
import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
function createDimensionsSelector() {
return createSelector(
(state) => state.app.dimensions,
(state: AppState) => state.app.dimensions,
(dimensions) => {
return dimensions;
}