fix(ui): handle intermediates when fetching gallery

This commit is contained in:
psychedelicious 2023-05-27 09:17:35 +10:00 committed by Kent Keirsey
parent f51defeeb3
commit f609ee21a2

View File

@ -25,6 +25,7 @@ export const receivedResultImagesPage = createAppAsyncThunk<
const response = await ImagesService.listImagesWithMetadata({
imageType: 'results',
imageCategory: 'general',
isIntermediate: false,
page: nextPage + pageOffset,
perPage: IMAGES_PER_PAGE,
});
@ -55,6 +56,7 @@ export const receivedUploadImagesPage = createAppAsyncThunk<
const response = await ImagesService.listImagesWithMetadata({
imageType: 'uploads',
imageCategory: 'general',
isIntermediate: false,
page: nextPage + pageOffset,
perPage: IMAGES_PER_PAGE,
});