Skip to content

Commit

Permalink
fix(ui): remove progress message condition for canvas destinations
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Nov 15, 2024
1 parent 9b08943 commit 87e89b7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions invokeai/frontend/web/src/services/events/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ export const $invocationProgressMessage = computed($lastProgressEvent, (val) =>
if (!val) {
return null;
}
if (val.destination !== 'canvas') {
return null;
}
let message = val.message;
if (val.percentage) {
message += ` (${round(val.percentage * 100)}%)`;
Expand Down

0 comments on commit 87e89b7

Please sign in to comment.