From d0c0da37d602bfa182d92c11aa8bea58e261c680 Mon Sep 17 00:00:00 2001 From: John Harrington <84741727+harr1424@users.noreply.github.com> Date: Tue, 2 Dec 2025 10:28:13 -0700 Subject: [PATCH] fix unused variable outside of macos build --- .../desktop_native/chromium_importer/src/chromium/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/desktop/desktop_native/chromium_importer/src/chromium/mod.rs b/apps/desktop/desktop_native/chromium_importer/src/chromium/mod.rs index e7e7efa08b..0608a3fc41 100644 --- a/apps/desktop/desktop_native/chromium_importer/src/chromium/mod.rs +++ b/apps/desktop/desktop_native/chromium_importer/src/chromium/mod.rs @@ -94,12 +94,11 @@ pub fn request_browser_access(browser_name: &str, mas_build: bool) -> Result<()> pub async fn import_logins( browser_name: &str, profile_id: &str, - #[cfg(target_os = "macos")] - mas_build: bool, + _mas_build: bool, ) -> Result> { // MAS builds will use the formerly created security bookmark #[cfg(target_os = "macos")] - let _access = if mas_build { + let _access = if _mas_build { Some(platform::sandbox::ScopedBrowserAccess::resume( browser_name, )?)