Skip to content

Commit

Permalink
fix(ThemeAssetRegistry): fix error message (#2818)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusNotheis committed Feb 15, 2021
1 parent bd1bd6e commit 7a0732a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/base/src/asset-registries/Themes.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const getThemeProperties = async (packageName, themeName) => {
const loader = loaders.get(`${packageName}/${themeName}`);
if (!loader) {
// no themes for package
console.error(`Theme [${themeName}] not registered for package [${pacakgeName}]`); /* eslint-disable-line */
console.error(`Theme [${themeName}] not registered for package [${packageName}]`); /* eslint-disable-line */
return;
}
let data;
Expand Down

0 comments on commit 7a0732a

Please sign in to comment.