Fix share prompt fields after rebase

This commit is contained in:
Charles Cunningham
2026-02-15 15:23:31 -08:00
parent ced5d77ad2
commit 9c6cc81ef4
3 changed files with 107 additions and 78 deletions

176
MODULE.bazel.lock generated

File diff suppressed because one or more lines are too long

View File

@@ -3755,6 +3755,7 @@ impl ChatWidget {
id: SHARE_SCOPE_QUESTION_ID.to_string(),
header: "Share".to_string(),
question: "Who should be able to open this shared session?".to_string(),
is_secret: false,
is_other: false,
options: Some(vec![
RequestUserInputQuestionOption {
@@ -3772,6 +3773,7 @@ impl ChatWidget {
header: "Emails".to_string(),
question: "If sharing with specific emails, list them (comma-separated)."
.to_string(),
is_secret: false,
is_other: false,
options: None,
},

View File

@@ -547,13 +547,6 @@ async fn run_ratatui_app(
} else {
initial_config
};
let ollama_chat_support_notice = match ollama_chat_deprecation_notice(&config).await {
Ok(notice) => notice,
Err(err) => {
tracing::warn!(?err, "Failed to detect Ollama wire API");
None
}
};
let fatal_exit = |tui: &mut Tui, message: String| {
error!("{message}");
restore();