Skip to content

Commit ad59b3b

Browse files
committed
Fix to_string() instead
1 parent 2eba2f0 commit ad59b3b

File tree

1 file changed

+1
-1
lines changed
  • turbopack/crates/turbopack-core/src

1 file changed

+1
-1
lines changed

turbopack/crates/turbopack-core/src/ident.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ impl ValueToString for AssetIdent {
5454

5555
let query = self.query.await?;
5656
if !query.is_empty() {
57-
write!(s, "?{}", &*query)?;
57+
write!(s, "{}", &*query)?;
5858
}
5959

6060
if let Some(fragment) = &self.fragment {

0 commit comments

Comments
 (0)