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
This commit is contained in:
Marshall Bowers
2025-03-10 20:55:53 +00:00
committed by GitHub
parent 5fd034e604
commit 570c396e84
+1 -1
View File
@@ -25,7 +25,7 @@ use crate::{
pub struct ContextStrip {
context_store: Entity<ContextStore>,
pub context_picker: Entity<ContextPicker>,
context_picker: Entity<ContextPicker>,
context_picker_menu_handle: PopoverMenuHandle<ContextPicker>,
focus_handle: FocusHandle,
suggest_context_kind: SuggestContextKind,