diff --git a/plugins/deep-link/src/commands.rs b/plugins/deep-link/src/commands.rs index 8d0d79c1..4b228e4c 100644 --- a/plugins/deep-link/src/commands.rs +++ b/plugins/deep-link/src/commands.rs @@ -2,15 +2,15 @@ // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT -use tauri::{AppHandle, command, Runtime, Window, State}; +use tauri::{command, AppHandle, Runtime, State, Window}; use crate::{DeepLink, Result}; #[command] pub(crate) async fn get_current( - _app: AppHandle, - _window: Window, - deep_link: State<'_, DeepLink> + _app: AppHandle, + _window: Window, + deep_link: State<'_, DeepLink>, ) -> Result>> { - deep_link.get_current() + deep_link.get_current() }