Tomas Rimkus

Results 204 comments of Tomas Rimkus

- I haven't looked into `prime-ng` before but, as far as I can see now, it looks like a pretty solid library and it should be quite easy to add...

@maxandriani I have forked the library and published a version which works with GA4 and Angular 16. [Release announcement](https://github.com/hakimio/ngx-google-analytics/releases/tag/15.0.0) [Installation and usage](https://github.com/hakimio/ngx-google-analytics#readme) Let me know what you think about it.

Can you create stackblitz reproduction of the issue?

From your description of the issue, I can't see what's wrong. The tour is set to "end" state when it actually ends, there is an error (error is logged to...

This is not helpful. As I said before: either create a minimal reproduction of the issue (stackblitz/github repo) or debug the tour service yourself to see why your tour has...

Not sure why directly specifying `reportRequests` for Analytics Reporting API doesn't work for you, because it works perfectly fine for me.

Here is a simple `trackByKey` implementation for those who would like to use it now: `track-by-key.directive.ts` ```ts import {Directive, Host, Input} from '@angular/core'; import {NgForOf} from '@angular/common'; @Directive({ selector: '[ngForTrackByKey]',...