chore: fixes typo in error message for detecting a circular dependency in theme.ts (#852)

This commit is contained in:
Patrick Rodacker 2019-03-18 08:08:44 +01:00 committed by Roman Hotsiy
parent dc77d8f25e
commit 2f65f051e0

View File

@ -166,7 +166,7 @@ export function resolveTheme(theme: ThemeInterface): ResolvedThemeInterface {
counter++;
if (counter > 1000) {
throw new Error(
`Theme probably contains cirucal dependency at ${currentPath}: ${val.toString()}`,
`Theme probably contains circular dependency at ${currentPath}: ${val.toString()}`,
);
}