From 570c396e84cba1973eab471e72fd34b2fa1e654f Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 10 Mar 2025 16:55:53 -0400 Subject: [PATCH] assistant2: Remove unneeded `pub` on field (#26399) This PR removes an unneeded `pub` on a field in the `ContextStrip`, as it was never accessed externally. Release Notes: - N/A --- crates/assistant2/src/context_strip.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/assistant2/src/context_strip.rs b/crates/assistant2/src/context_strip.rs index 948ebcc852ed10d7dc00a3d289e6250270d7c7b1..60381af06d1cfaa2cc89ff41c13f56a21a865ef6 100644 --- a/crates/assistant2/src/context_strip.rs +++ b/crates/assistant2/src/context_strip.rs @@ -25,7 +25,7 @@ use crate::{ pub struct ContextStrip { context_store: Entity, - pub context_picker: Entity, + context_picker: Entity, context_picker_menu_handle: PopoverMenuHandle, focus_handle: FocusHandle, suggest_context_kind: SuggestContextKind,