remove debug sleep (fixes #1451)

This commit is contained in:
extrawurst 2022-11-25 21:16:47 +01:00
parent ca19d42948
commit 6c4ee56eed
2 changed files with 1 additions and 3 deletions

View file

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixes
* commit msg history ordered the wrong way ([#1445](https://github.com/extrawurst/gitui/issues/1445))
* improve help documentation for amend cmd ([#1448](https://github.com/extrawurst/gitui/issues/1448))
* lag issue when showing files tab ([#1451](https://github.com/extrawurst/gitui/issues/1451))
## [0.22.1] - 2022-11-22

View file

@ -65,9 +65,6 @@ impl AsyncJob for AsyncTreeFilesJob {
JobState::Request { commit, repo } => {
let files = tree_files(&repo, commit);
std::thread::sleep(
std::time::Duration::from_secs(2),
);
JobState::Response(FileTreeResult {
commit,
result: files,