fix: Update TUI data more frequently

This commit is contained in:
Marco Cadetg (aider)
2025-05-09 15:10:19 +02:00
parent 78f1af3657
commit 91c120e3e2

View File

@@ -114,7 +114,7 @@ impl App {
// Sleep to avoid high CPU usage
drop(connections);
drop(monitor);
thread::sleep(std::time::Duration::from_millis(1000));
thread::sleep(std::time::Duration::from_millis(250)); // Update data more frequently
}
});