Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 29, 2024
1 parent 43154db commit 23001b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/next-api/src/versioned_content_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ impl VersionedContentMap {
return Vc::cell(None);
};
// Need to reconnect the operation to the map
Vc::connect(assets);
Vc::connect(*assets);

let compute_entry = {
let map = self.map_op_to_compute_entry.get();
Expand All @@ -249,8 +249,8 @@ impl VersionedContentMap {
return Vc::cell(None);
};
// Need to reconnect the operation to the map
Vc::connect(compute_entry);
Vc::connect(*compute_entry);

compute_entry
*compute_entry
}
}

0 comments on commit 23001b0

Please sign in to comment.