diff --git a/crates/project/src/worktree_store.rs b/crates/project/src/worktree_store.rs index 06b1cf60b0..01bd67d6fb 100644 --- a/crates/project/src/worktree_store.rs +++ b/crates/project/src/worktree_store.rs @@ -1093,7 +1093,7 @@ impl WorktreeStore { pub async fn handle_expand_all_for_project_entry( this: Entity, envelope: TypedEnvelope, - mut cx: AsyncAppContext, + mut cx: AsyncApp, ) -> Result { let entry_id = ProjectEntryId::from_proto(envelope.payload.entry_id); let worktree = this diff --git a/crates/worktree/src/worktree.rs b/crates/worktree/src/worktree.rs index ee9803efaf..f8336484a3 100644 --- a/crates/worktree/src/worktree.rs +++ b/crates/worktree/src/worktree.rs @@ -1188,7 +1188,7 @@ impl Worktree { pub async fn handle_expand_all_for_entry( this: Entity, request: proto::ExpandAllForProjectEntry, - mut cx: AsyncAppContext, + mut cx: AsyncApp, ) -> Result { let task = this.update(&mut cx, |this, cx| { this.expand_all_for_entry(ProjectEntryId::from_proto(request.entry_id), cx)