Skip to content

Commit

Permalink
fix: remove extra whitespace
Browse files Browse the repository at this point in the history
Co-authored-by: Jan Sedloň <[email protected]>
  • Loading branch information
fdarian and jansedlon authored Jun 5, 2024
1 parent 5fde49a commit 79c57bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/generator/src/lib/syntaxes/imports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function defaultImportValue(
isTypeImport,
render() {
// biome-ignore format: off
return `import ${isTypeImport ? 'type' : ''} ${name} from '${renderImportPath(path)}';`
return `import ${isTypeImport ? 'type ' : ''}${name} from '${renderImportPath(path)}';`
},
}
}
Expand Down

0 comments on commit 79c57bc

Please sign in to comment.