chore: fmt

This commit is contained in:
Lucas Nogueira
2026-09-26 15:57:33 -03:00
parent a433ec09d1
commit f460570b44
13 changed files with 101 additions and 93 deletions
+4 -3
View File
@@ -471,9 +471,10 @@ impl Builder {
let stores = collection.stores.read().unwrap();
for (path, rid) in stores.iter() {
if let Ok(store) = app_handle.resources_table().get::<Store<R>>(*rid)
&& let Err(err) = store.save() {
tracing::error!("failed to save store {path:?} with error {err:?}");
}
&& let Err(err) = store.save()
{
tracing::error!("failed to save store {path:?} with error {err:?}");
}
}
}
})