We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4306211 commit 4e298dbCopy full SHA for 4e298db
turbopack/crates/turbo-tasks-backend/src/backend/mod.rs
@@ -824,10 +824,8 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {
824
825
let content = if final_read_hint {
826
task.remove_cell_data(is_transient_cell, cell)
827
- } else if let Some(content) = task.get_cell_data(is_transient_cell, cell) {
828
- Some(content)
829
} else {
830
- None
+ task.get_cell_data(is_transient_cell, cell)
831
};
832
if let Some(content) = content {
833
if tracking.should_track(false) {
0 commit comments