fix missing semicolon

This commit is contained in:
Cameron Westland
2017-04-21 16:35:42 -07:00
parent 7e374e7e75
commit 1f55ebf06a

View File

@@ -156,7 +156,7 @@ export default class Manager {
if (!registration) {
return [];
} else {
return registration.components.map(c => c.fill)
return registration.components.map(c => c.fill);
}
}