1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

reverted app.tsx incorrect merge

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-02-01 18:07:16 +02:00
parent cd1c8fbd16
commit 51d20462d5

View File

@ -177,11 +177,11 @@ export class App extends React.Component {
} }
}); });
Array.from(this.extensionRoutes.keys()).forEach((menu) => { for (const menu of this.extensionRoutes.keys()) {
if (!rootItems.includes(menu)) { if (!rootItems.includes(menu)) {
this.extensionRoutes.delete(menu); this.extensionRoutes.delete(menu);
} }
}); }
} }
renderExtensionRoutes() { renderExtensionRoutes() {