Skip to content

Commit

Permalink
Fix component element
Browse files Browse the repository at this point in the history
  • Loading branch information
afsalthaj committed Jul 2, 2024
1 parent 32c0cd0 commit ad9845c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl ResolvedWorkerBinding {
pub async fn execute_with<R>(
&self,
evaluator: &Arc<dyn Evaluator + Sync + Send>,
symbol_fetch: &Arc<dyn ComponentElementsService + Sync + Send>,
component_element_service: &Arc<dyn ComponentElementsService + Sync + Send>,
) -> R
where
ExprEvaluationResult: ToResponse<R>,
Expand All @@ -128,7 +128,7 @@ impl ResolvedWorkerBinding {
self,
worker_id,
evaluator.clone(),
symbol_fetch.clone(),
component_element_service.clone(),
)
.await;

Expand Down

0 comments on commit ad9845c

Please sign in to comment.