diff --git a/src/components/actionbar/ComfyActionbar.vue b/src/components/actionbar/ComfyActionbar.vue
index 52cc439b8..bd73eef3d 100644
--- a/src/components/actionbar/ComfyActionbar.vue
+++ b/src/components/actionbar/ComfyActionbar.vue
@@ -48,6 +48,7 @@
diff --git a/src/components/queue/QueueInlineProgress.vue b/src/components/queue/QueueInlineProgress.vue
index 0e5842941..e591e50d2 100644
--- a/src/components/queue/QueueInlineProgress.vue
+++ b/src/components/queue/QueueInlineProgress.vue
@@ -2,7 +2,9 @@
()
const { totalPercent, currentNodePercent } = useQueueProgress()
const shouldShow = computed(
- () =>
- !props.hidden && (totalPercent.value > 0 || currentNodePercent.value > 0)
+ () => !hidden && (totalPercent.value > 0 || currentNodePercent.value > 0)
)