Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cloneRouter() uses same root node #526

Open
yndx-madfriend opened this issue Nov 2, 2023 · 0 comments
Open

cloneRouter() uses same root node #526

yndx-madfriend opened this issue Nov 2, 2023 · 0 comments

Comments

@yndx-madfriend
Copy link

Given the definition of cloneRouter, the same rootNode is reused. It means that following code:

const router1 = cloneRouter(router);
const router2 = cloneRouter(router);

router1.add([{ name: "foo", path: "/foo" }]);
router2.add([{ name: "foo", path: "/foo" }]);

Will result in error from route-node:

Alias "foo" is already defined in route node
        at RouteNode2.addRouteNode(...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant