fix(BulkManager): prevent initialization on recipes page to avoid unnecessary processing

This commit is contained in:
Will Miao
2025-09-05 22:45:23 +08:00
parent 1f91a3da8e
commit f332aef41d
2 changed files with 11 additions and 6 deletions

View File

@@ -59,6 +59,9 @@ export class BulkManager {
}
initialize() {
// Do not initialize on recipes page
if (state.currentPageType === 'recipes') return;
// Register with event manager for coordinated event handling
this.registerEventHandlers();