Skip to content

Commit

Permalink
Merge pull request #1533 from RoboSats/change-to-fast-generate-order
Browse files Browse the repository at this point in the history
Fix robot population
  • Loading branch information
KoalaSat authored Oct 18, 2024
2 parents c8de8c9 + ff652d3 commit 4efadba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/models/Garage.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ class Garage {
encPrivKey: key.encryptedPrivateKeyArmored,
};

void this.fetchRobot(federation, token);
this.setCurrentSlot(token);
this.slots[token] = new Slot(
token,
Expand All @@ -151,6 +150,7 @@ class Garage {
this.triggerHook('onSlotUpdate');
},
);
void this.fetchRobot(federation, token);
this.save();
})
.catch((error) => {
Expand Down

0 comments on commit 4efadba

Please sign in to comment.