mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 10:23:41 +00:00
Fix missing isDeleting prop destructuring in ProgressMonitor
Add isDeleting to destructured props with default value of false. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
72641c0fb6
commit
9d9f71c543
1 changed files with 1 additions and 0 deletions
|
|
@ -39,6 +39,7 @@ export function ProgressMonitor({
|
||||||
onStartMaskTrace,
|
onStartMaskTrace,
|
||||||
onStartSewing,
|
onStartSewing,
|
||||||
onResumeSewing,
|
onResumeSewing,
|
||||||
|
isDeleting = false,
|
||||||
}: ProgressMonitorProps) {
|
}: ProgressMonitorProps) {
|
||||||
// State indicators
|
// State indicators
|
||||||
const isMaskTraceComplete = machineStatus === MachineStatus.MASK_TRACE_COMPLETE;
|
const isMaskTraceComplete = machineStatus === MachineStatus.MASK_TRACE_COMPLETE;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue