mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): do not show intermediates uploads in gallery
This commit is contained in:
parent
5013a4b9f3
commit
7dc9d18052
@ -6,9 +6,12 @@ import { imageUploaded } from 'services/thunks/image';
|
|||||||
|
|
||||||
export const addImageUploadedListener = () => {
|
export const addImageUploadedListener = () => {
|
||||||
startAppListening({
|
startAppListening({
|
||||||
actionCreator: imageUploaded.fulfilled,
|
predicate: (action): action is ReturnType<typeof imageUploaded.fulfilled> =>
|
||||||
|
imageUploaded.fulfilled.match(action) &&
|
||||||
|
action.payload.response.image_type !== 'intermediates',
|
||||||
effect: (action, { dispatch, getState }) => {
|
effect: (action, { dispatch, getState }) => {
|
||||||
const { response } = action.payload;
|
const { response } = action.payload;
|
||||||
|
|
||||||
const state = getState();
|
const state = getState();
|
||||||
const image = deserializeImageResponse(response);
|
const image = deserializeImageResponse(response);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user