Skip to content

Commit e9ea554

Browse files
authored
fix(config): misnamed variable causing errors.
1 parent d17bc71 commit e9ea554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/ng2/models/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class CliConfig<Config> {
7373
try {
7474
content = JSON.parse(configContent);
7575
schema = JSON.parse(schemaContent);
76-
others = otherContents.map(content => JSON.parse(otherContent));
76+
others = otherContents.map(otherContent => JSON.parse(otherContent));
7777
} catch (err) {
7878
throw new InvalidConfigError(err);
7979
}

0 commit comments

Comments
 (0)