Fixed: Artists posters flickering when width changes repeatedly

(cherry picked from commit 53cf5308931069638c23925596a3fd8aaccc5d98)

Closes #64448
This commit is contained in:
Mark McDowall 2024-01-12 23:17:29 -08:00 committed by Bogdan
parent 1b19e44562
commit 9aae065c5d
3 changed files with 18 additions and 3 deletions

View file

@ -39,8 +39,17 @@ export interface CustomFilter {
filers: PropertyFilter[];
}
export interface AppSectionState {
dimensions: {
isSmallScreen: boolean;
width: number;
height: number;
};
}
interface AppState {
albums: AlbumAppState;
app: AppSectionState;
artist: ArtistAppState;
artistIndex: ArtistIndexAppState;
history: HistoryAppState;