From 16d9fcdadc89a7d157ef2b81eb0155b3676ea675 Mon Sep 17 00:00:00 2001 From: filipriec Date: Sun, 13 Apr 2025 14:09:57 +0200 Subject: [PATCH] only important stuff in the response of the login --- client/src/tui/functions/common/login.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/client/src/tui/functions/common/login.rs b/client/src/tui/functions/common/login.rs index 53df246..0f92d78 100644 --- a/client/src/tui/functions/common/login.rs +++ b/client/src/tui/functions/common/login.rs @@ -34,15 +34,9 @@ pub async fn save( let success_message = format!( "Login Successful!\n\n\ Username: {}\n\ - Access Token: {}\n\ - Token Type: {}\n\ - Expires In: {}\n\ User ID: {}\n\ Role: {}", response.username, - response.access_token, - response.token_type, - response.expires_in, response.user_id, response.role );