In main.service.ts there are serveral uses of RXJS's debounceTime, see for example:
https://github.com/hashtopolis/web-ui/blob/c49b467bfe6c330bc6cd168af489232ce4f0f9eb/src/app/core/_services/main.service.ts#L240
However, debounceTime does not debounce requests because these are HttpClient observables (single emission then complete). So these usages of debounceTime are basically without effect.
In
main.service.tsthere are serveral uses of RXJS'sdebounceTime, see for example:https://github.com/hashtopolis/web-ui/blob/c49b467bfe6c330bc6cd168af489232ce4f0f9eb/src/app/core/_services/main.service.ts#L240
However,
debounceTimedoes not debounce requests because these are HttpClient observables (single emission then complete). So these usages ofdebounceTimeare basically without effect.