removed upscale button, created spandrel model dropdown, created upscale initial image that works with dnd

This commit is contained in:
Mary Hipp
2024-07-17 10:50:33 -04:00
committed by psychedelicious
parent 43b3e242b0
commit a0a54348e8
20 changed files with 317 additions and 39 deletions

View File

@ -21,6 +21,10 @@ const selectPostUploadAction = createMemoizedSelector(activeTabNameSelector, (ac
postUploadAction = { type: 'SET_CANVAS_INITIAL_IMAGE' };
}
if (activeTabName === 'upscaling') {
postUploadAction = { type: 'SET_UPSCALE_INITIAL_IMAGE' };
}
return postUploadAction;
});