Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 30, 2024
1 parent 156b4c4 commit d555635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/next-api/src/versioned_content_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ impl VersionedContentMap {
self: Vc<Self>,
path: Vc<FileSystemPath>,
) -> Result<Vc<OptionVersionedContent>> {
Ok(Vc::cell(match (*self.get_asset(path).await?) {
Ok(Vc::cell(match *self.get_asset(path).await? {
Some(asset) => Some(asset.versioned_content().to_resolved().await?),
None => None,
}))
Expand Down

0 comments on commit d555635

Please sign in to comment.