Skip to content

Commit 0ebb5ca

Browse files
committed
Added TODO for future development.
1 parent 7c6bbfc commit 0ebb5ca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/componentManager.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,10 @@ export class ComponentManager {
147147
else {
148148
const loadChildrenMatch = this.loadChildrenRegex.exec(routesBodyPart);
149149
if (loadChildrenMatch !== null) {
150-
const moduleName = loadChildrenMatch[1];
151-
console.log(`${moduleComponent.name} routing to module ${moduleName}`);
150+
// TODO: Add logic for adding relations to the components referenced by the module reference
151+
152+
// const moduleName = loadChildrenMatch[1];
153+
// console.log(`${moduleComponent.name} routing to module ${moduleName}`);
152154
}
153155
}
154156
const childrenMatch = this.childrenRegex.exec(routesBodyPart);

0 commit comments

Comments
 (0)