James Griffin
James Griffin
Our company is PixelDr, currently a team of three, and we're building a dashboard that will showcase a lot of our user's data from an educational platform we're building out....
Upvoted :) thanks for all your efforts and making a brilliant product
Hello guys, sorry for the delay but I have put together an implementation for this and opened a PR (#237), let me know what you think (and please test it)!...
Any plans for this?
I'd love to see this support also! Something like: ```html ``` Where the key is the value threshold and the value is the step increment
Also seeing this in version 13.4.0
For others hitting this issue you can work around it like so: ```typescript constructor( private performance: Performance, @Inject(PLATFORM_ID) private platformId: Object ) { this.isBrowser = isPlatformBrowser(this.platformId); if (this.isBrowser) { this.startupTrace...
Thanks James, I've managed to work around it for now by using `isPlatformServer()` ```typescript provideAppCheck(() => { // Don't initialise AppCheck if running in server // Workaround for https://github.com/angular/angularfire/issues/3488 const...