Skip to content

Commit

Permalink
refactor(launchpad): removing redudnat for loops
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzi authored and joshuef committed May 14, 2024
1 parent aea71c6 commit 46e4b98
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions node-launchpad/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,7 @@ impl App {

for component in self.components.iter_mut() {
component.register_action_handler(action_tx.clone())?;
}

for component in self.components.iter_mut() {
component.register_config_handler(self.config.clone())?;
}

for component in self.components.iter_mut() {
component.init(tui.size()?)?;
}

Expand Down

0 comments on commit 46e4b98

Please sign in to comment.