Skip to content

Commit

Permalink
Use 2 decimal for sync progression in home page
Browse files Browse the repository at this point in the history
  • Loading branch information
thomask7b committed Nov 15, 2024
1 parent 327f0ea commit 5d65a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion liana-gui/src/app/view/home.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn home_view<'a>(
.push(
match sync_status {
SyncStatus::BlockchainSync(progress) => text(format!(
"Syncing blockchain ({:.1}%)",
"Syncing blockchain ({:.2}%)",
100.0 * *progress
)),
SyncStatus::WalletFullScan => text("Syncing"),
Expand Down

0 comments on commit 5d65a4e

Please sign in to comment.