mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Apply eslint/prettier fixes
This commit is contained in:
parent
3706cf0ad4
commit
8bca7e2aa2
@ -38,7 +38,7 @@ export const addSocketQueueItemStatusChangedEventListener = (startAppListening:
|
||||
const { queue_item, batch_status, queue_status } = action.payload.data;
|
||||
|
||||
// Keep track of the active queue length by summing up pending and in_progress count
|
||||
const activeQueueLength: number = (queue_status.pending + queue_status.in_progress) || 0;
|
||||
const activeQueueLength: number = queue_status.pending + queue_status.in_progress || 0;
|
||||
|
||||
log.debug(action.payload, `Queue item ${queue_item.item_id} status updated: ${queue_item.status}`);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user