From 86ad77c645ddf0eb6cadb8831a5a7bdcb9d6964e Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Fri, 6 Feb 2026 00:34:29 +0800 Subject: [PATCH] chore: fix warning --- chat-cli/src/app.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/chat-cli/src/app.rs b/chat-cli/src/app.rs index fa14100..45213d2 100644 --- a/chat-cli/src/app.rs +++ b/chat-cli/src/app.rs @@ -55,8 +55,6 @@ pub struct ChatApp { pub user_name: String, /// Path to state file. state_path: PathBuf, - /// Data directory. - data_dir: PathBuf, } impl ChatApp { @@ -99,7 +97,6 @@ impl ChatApp { status, user_name: user_name.to_string(), state_path, - data_dir: data_dir.clone(), }) }