Update scripts/refactor-to-dynamic-imports.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
2026-01-18 21:46:46 +00:00
committed by GitHub
parent bef28e8c91
commit 5f92fbbf54

View File

@@ -43,7 +43,6 @@ async function refactorFile(filePath: string): Promise<boolean> {
let modified = false
// Find all imports to replace
const importLines: string[] = []
const componentsToLoad = new Set<string>()
for (const [category, components] of Object.entries(targetComponents)) {