mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
fix missed spot for autoAddBoardId none
This commit is contained in:
committed by
psychedelicious
parent
0b11f309ca
commit
a67d8376c7
@@ -20,7 +20,7 @@ export const addStagingAreaImageSavedListener = () => {
|
||||
// we may need to add it to the autoadd board
|
||||
const { autoAddBoardId } = getState().gallery;
|
||||
|
||||
if (autoAddBoardId) {
|
||||
if (autoAddBoardId && autoAddBoardId !== 'none') {
|
||||
await dispatch(
|
||||
imagesApi.endpoints.addImageToBoard.initiate({
|
||||
imageDTO: newImageDTO,
|
||||
|
||||
Reference in New Issue
Block a user