Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Misieq01 committed Dec 11, 2024
1 parent 6c3b168 commit feff64f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src-tauri/src/auto_launcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,10 @@ impl AutoLauncher {
.await?;
auto_launcher.disable()?;
}
_ => {}
_ => {
auto_launcher.disable()?;
}
}
auto_launcher.disable()?;
}

Ok(())
Expand Down

0 comments on commit feff64f

Please sign in to comment.