Skip to content

Commit

Permalink
fix: wrong boolean :)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBLT committed Mar 9, 2024
1 parent 5a53e43 commit bb53119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@hec.js/ui/lib/src/routing.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function addRoute(route) {
targetRoutes.push(route);
targetRoutes.sort(routeCompare);

if (state.updateQueued) {
if (!state.updateQueued) {
state.updateQueued = true;

queueMicrotask(updateRouting);
Expand Down

0 comments on commit bb53119

Please sign in to comment.