(app: &mut App)
| 1902 | // --------------------------------------------------------------------------- |
| 1903 | |
| 1904 | async fn refresh_data(app: &mut App) { |
| 1905 | refresh_health(app).await; |
| 1906 | refresh_global_settings(app).await; |
| 1907 | refresh_providers(app).await; |
| 1908 | refresh_sandboxes(app).await; |
| 1909 | } |
| 1910 | |
| 1911 | async fn refresh_providers(app: &mut App) { |
| 1912 | let profiles = if app.providers_v2_enabled { |
no test coverage detected