Skip to content

Commit a67d837

Browse files
Mary Hipppsychedelicious
authored andcommitted
fix missed spot for autoAddBoardId none
1 parent 0b11f30 commit a67d837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/app/store/middleware/listenerMiddleware/listeners/stagingAreaImageSaved.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const addStagingAreaImageSavedListener = () => {
2020
// we may need to add it to the autoadd board
2121
const { autoAddBoardId } = getState().gallery;
2222

23-
if (autoAddBoardId) {
23+
if (autoAddBoardId && autoAddBoardId !== 'none') {
2424
await dispatch(
2525
imagesApi.endpoints.addImageToBoard.initiate({
2626
imageDTO: newImageDTO,

0 commit comments

Comments
 (0)