Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jul 11, 2024
1 parent 0aa4b7a commit d5558c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/transform-imports/transform/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ impl<'a> Rewriter<'a> {
with: None,
});
}
ExportSpecifier::Namespace(ns_spec) if !self.config.prevent_full_import => {
ExportSpecifier::Namespace(ns_spec) if !self.config.handle_namespace_import => {
let name_str = match &ns_spec.name {
ModuleExportName::Ident(x) => x.as_ref(),
ModuleExportName::Str(x) => x.value.as_ref(),
Expand Down

0 comments on commit d5558c8

Please sign in to comment.