mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): fix merge issue w/ selectors
This commit is contained in:
parent
196fb0e014
commit
60815807f9
@ -93,10 +93,10 @@ export const nextPrevImageButtonsSelector = createMemoizedSelector(
|
|||||||
? imagesSelectors.selectById(data, prevImageId)
|
? imagesSelectors.selectById(data, prevImageId)
|
||||||
: undefined;
|
: undefined;
|
||||||
const topImage = topImageId
|
const topImage = topImageId
|
||||||
? selectors.selectById(data, topImageId)
|
? imagesSelectors.selectById(data, topImageId)
|
||||||
: undefined;
|
: undefined;
|
||||||
const bottomImage = bottomImageId
|
const bottomImage = bottomImageId
|
||||||
? selectors.selectById(data, bottomImageId)
|
? imagesSelectors.selectById(data, bottomImageId)
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
const imagesLength = images.length;
|
const imagesLength = images.length;
|
||||||
|
Loading…
Reference in New Issue
Block a user