Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Jun 4, 2024
1 parent 3f7b191 commit 8953f58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/next-swc/crates/next-api/src/instrumentation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ impl Endpoint for InstrumentationEndpoint {
async move {
let this = self.await?;
let output_assets = self.output_assets();
output_assets.resolve().await?;
let _ = output_assets.resolve().await?;
this.project
.emit_all_output_assets(Vc::cell(output_assets))
.await?;
Expand Down
2 changes: 1 addition & 1 deletion packages/next-swc/crates/next-api/src/middleware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl Endpoint for MiddlewareEndpoint {
async move {
let this = self.await?;
let output_assets = self.output_assets();
output_assets.resolve().await?;
let _ = output_assets.resolve().await?;
this.project
.emit_all_output_assets(Vc::cell(output_assets))
.await?;
Expand Down

0 comments on commit 8953f58

Please sign in to comment.