mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-05 13:10:24 +00:00
- Enable @typescript-eslint/no-floating-promises rule in eslint.config.js - Fix floating promises in src/scripts/api.ts (setInterval with async callback) - Fix floating promises in src/components/topbar/WorkflowTabPopover.vue (setTimeout with async callback) - Fix floating promises in src/extensions/core/webcamCapture.ts (.then call) - Fix floating promises in src/extensions/core/nodeTemplates.ts (.then call) - Fix floating promises in src/composables/node/useNodeImage.ts (.then call) All floating promises are now properly handled with void operator to explicitly indicate that the promise result is intentionally not being awaited. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>