Skip to content

Commit

Permalink
Fix for Windows 1 - Test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealIndianBoi committed Dec 27, 2024
1 parent 1f2c02d commit 215d3a3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src-tauri/src/commands/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use semver::Version;
use std::path::Path;
use sysinfo::Disks;
use tauri::{Emitter, Manager};

use crate::util::os::get_installed_vcc_runtime;
use super::CommandError;

#[tauri::command]
Expand Down Expand Up @@ -132,9 +132,7 @@ pub async fn is_minimum_vcc_runtime_installed(
#[tauri::command]
pub async fn is_minimum_vcc_runtime_installed(
_config: tauri::State<'_, tokio::sync::Mutex<LauncherConfig>>,
) -> Result<bool, CommandError> {
return Ok(false);
}
) -> Result<bool, CommandError> { Ok(false) }

#[cfg(target_os = "macos")]
#[tauri::command]
Expand Down

0 comments on commit 215d3a3

Please sign in to comment.