Skip to content

Commit

Permalink
fix: return evaluated theme from ConfigScanner.getThemeProperty method
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadsammy committed Oct 3, 2020
1 parent 381a2c4 commit 5dbb337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/core/ConfigScanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export class ConfigScanner {
themeProperty: keyof TThemeItems,
): [string[], Array<string | Record<string, string>>] => {
return [
Object.keys(this.themeConfig[themeProperty]),
Object.values(this.themeConfig[themeProperty]),
Object.keys(this.getTheme()[themeProperty]),
Object.values(this.getTheme()[themeProperty]),
];
};
}
Expand Down

0 comments on commit 5dbb337

Please sign in to comment.