diff options
Diffstat (limited to 'src-tauri/src/main.rs')
| -rw-r--r-- | src-tauri/src/main.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 3671166..b59ae31 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -83,13 +83,9 @@ async fn start_game( .clone() .ok_or("No active account found. Please login first.")?; - let account_type = match &account { - core::auth::Account::Offline(_) => "Offline", - core::auth::Account::Microsoft(_) => "Microsoft", - }; emit_log!( window, - format!("Account found: {} ({})", account.username(), account_type) + format!("Account found: {}", account.username()) ); let config = config_state.config.lock().unwrap().clone(); |