Skip to content

Commit ea057d7

Browse files
fix(ui): inverted logic for resume queue button
1 parent 2039cee commit ea057d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/queue/hooks/useResumeProcessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ export const useResumeProcessor = () => {
3030
}
3131
}, [_trigger, t]);
3232

33-
return { trigger, isLoading, isDisabled: !isConnected || !queueStatus?.processor.is_started };
33+
return { trigger, isLoading, isDisabled: !isConnected || queueStatus?.processor.is_started };
3434
};

0 commit comments

Comments
 (0)