Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 28, 2024
1 parent 27724a5 commit 1d3b627
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions turbopack/crates/turbopack-css/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,8 @@ struct ParsingIssue {
#[turbo_tasks::value_impl]
impl Issue for ParsingIssue {
#[turbo_tasks::function]
fn file_path(&self) -> Vc<FileSystemPath> {
self.file
fn file_path(&self) -> ResolvedVc<FileSystemPath> {
*self.file
}

#[turbo_tasks::function]
Expand All @@ -670,7 +670,7 @@ impl Issue for ParsingIssue {

#[turbo_tasks::function]
fn source(&self) -> Vc<OptionIssueSource> {
Vc::cell(self.source.map(|s| s.resolve_source_map(self.file)))
Vc::cell(self.source.map(|s| s.resolve_source_map(*self.file)))
}

#[turbo_tasks::function]
Expand Down

0 comments on commit 1d3b627

Please sign in to comment.