Kaynağa Gözat

Fix migrations appearing twice when recreating

When recreating multiple migrations simultaneously from the migrations
list page, duplicated migrations might appear temporarily.
Sergiu Miclea 3 yıl önce
ebeveyn
işleme
68dabaf6da
1 değiştirilmiş dosya ile 0 ekleme ve 3 silme
  1. 0 3
      src/stores/MigrationStore.ts

+ 0 - 3
src/stores/MigrationStore.ts

@@ -179,9 +179,6 @@ class MigrationStore {
       userScriptData,
       minionPoolMappings,
     });
-    runInAction(() => {
-      this.migrations = [migration, ...this.migrations];
-    });
     return migration;
   }