mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): remove console logs
This commit is contained in:
parent
30e0033ebe
commit
39088e42cc
@ -20,12 +20,10 @@ export const addImageMetadataReceivedFulfilledListener = () => {
|
|||||||
moduleLog.debug({ data: { image } }, 'Image metadata received');
|
moduleLog.debug({ data: { image } }, 'Image metadata received');
|
||||||
|
|
||||||
if (image.image_type === 'results') {
|
if (image.image_type === 'results') {
|
||||||
console.log('upsert results');
|
|
||||||
dispatch(resultUpserted(action.payload as ResultsImageDTO));
|
dispatch(resultUpserted(action.payload as ResultsImageDTO));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (image.image_type === 'uploads') {
|
if (image.image_type === 'uploads') {
|
||||||
console.log('upsert uploads');
|
|
||||||
dispatch(uploadUpserted(action.payload as UploadsImageDTO));
|
dispatch(uploadUpserted(action.payload as UploadsImageDTO));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user