Skip to content

Commit 8d7a471

Browse files
author
Konstantin Dinev
committed
chore(*): fixing code style
1 parent fd04ba6 commit 8d7a471

File tree

1 file changed

+2
-3
lines changed
  • projects/igniteui-angular/migrations/update-21_0_0

1 file changed

+2
-3
lines changed

projects/igniteui-angular/migrations/update-21_0_0/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,8 @@ function migrateFile(filePath: string, content: string): string {
209209
}
210210
}
211211
}
212-
}
213-
// Rename type references in the code (but only if not aliased in import)
214-
else if (ts.isIdentifier(node) && importedOldTypes.has(node.text)) {
212+
} else if (ts.isIdentifier(node) && importedOldTypes.has(node.text)) {
213+
// Rename type references in the code (but only if not aliased in import)
215214
const oldName = node.text;
216215
const rename = TYPE_RENAMES.get(oldName)!;
217216

0 commit comments

Comments
 (0)