Skip to content

Commit

Permalink
Fix more
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 28, 2024
1 parent 2c08e34 commit d66adaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/napi/src/next_api/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ impl NapiMiddleware {
Ok(NapiMiddleware {
endpoint: External::new(ExternalEndpoint(VcArc::new(
turbo_tasks.clone(),
value.endpoint,
*value.endpoint,
))),
})
}
Expand All @@ -598,11 +598,11 @@ impl NapiInstrumentation {
Ok(NapiInstrumentation {
node_js: External::new(ExternalEndpoint(VcArc::new(
turbo_tasks.clone(),
value.node_js,
*value.node_js,
))),
edge: External::new(ExternalEndpoint(VcArc::new(
turbo_tasks.clone(),
value.edge,
*value.edge,
))),
})
}
Expand Down

0 comments on commit d66adaa

Please sign in to comment.