Skip to content

Commit

Permalink
refactor(tui): chnage "Settings" to be shared and not cloned
Browse files Browse the repository at this point in the history
there were soo many clones
  • Loading branch information
hasezoey committed Mar 23, 2024
1 parent a36bbad commit 6d9141a
Show file tree
Hide file tree
Showing 28 changed files with 1,616 additions and 1,473 deletions.
2 changes: 1 addition & 1 deletion tui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async fn actual_main() -> Result<()> {
.await?;
info!("Connected!");

let mut ui = UI::new(&config, client).await?;
let mut ui = UI::new(config, client).await?;
ui.run().await?;

Ok(())
Expand Down
Loading

0 comments on commit 6d9141a

Please sign in to comment.