Fix app storage

This commit is contained in:
space-nuko
2023-04-28 16:57:42 -07:00
parent 234c280959
commit 079f411a04
5 changed files with 10 additions and 24 deletions

View File

@@ -77,14 +77,6 @@ export default class ComfyApp {
shiftDown: boolean = false;
selectedGroupMoving: boolean = false;
private static _instance: ComfyApp;
static get instance(): ComfyApp {
if (!ComfyApp._instance)
ComfyApp._instance = new ComfyApp()
return ComfyApp._instance
}
private queueItems: QueueItem[] = [];
private processingQueue: boolean = false;