Browse Source

fix clippy

Evan Almloff 1 year ago
parent
commit
f8a8ee3e29
2 changed files with 2 additions and 2 deletions
  1. 1 1
      packages/desktop/src/hooks.rs
  2. 1 1
      packages/fullstack/src/hooks/server_future.rs

+ 1 - 1
packages/desktop/src/hooks.rs

@@ -58,7 +58,7 @@ pub fn use_global_shortcut(
     handler: impl FnMut() + 'static,
 ) -> Result<ShortcutHandle, ShortcutRegistryError> {
     // wrap the user's handler in something that will carry the scope/runtime with it
-    let mut cb = use_callback(handler);
+    let cb = use_callback(handler);
 
     use_hook_with_cleanup(
         move || window().create_shortcut(accelerator.accelerator(), move || cb.call()),

+ 1 - 1
packages/fullstack/src/hooks/server_future.rs

@@ -9,7 +9,7 @@ where
     T: Serialize + DeserializeOwned + 'static,
     F: Future<Output = T> + 'static,
 {
-    let mut cb = use_callback(_future);
+    let cb = use_callback(_future);
     let mut first_run = use_hook(|| CopyValue::new(true));
 
     let resource = use_resource(move || {