We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 370d3f8 commit b1807a0Copy full SHA for b1807a0
packages/router-component-store/src/lib/router-history-store/router-history.store.ts
@@ -116,10 +116,7 @@ export class RouterHistoryStore extends ComponentStore<RouterHistoryState> {
116
this.select(
117
this.#maxNavigatedId$,
118
this.#history$,
119
- (maxNavigatedId, history) => history[maxNavigatedId],
120
- {
121
- debounce: true,
122
- }
+ (maxNavigatedId, history) => history[maxNavigatedId]
123
);
124
125
/**
@@ -159,9 +156,6 @@ export class RouterHistoryStore extends ComponentStore<RouterHistoryState> {
159
156
160
157
161
158
return previousNavigationEnd.urlAfterRedirects;
162
- },
163
164
165
}
166
167
0 commit comments