Results 38 comments of anisabboud

Example from today - loop in production: Console tab: ![2022-08-28 appCheck console tab](https://user-images.githubusercontent.com/5672108/187080484-f0fc4503-4a1f-4361-b7d3-c1ec98e396d4.png) Network tab: ![2022-08-28 appCheck network tab](https://user-images.githubusercontent.com/5672108/187080482-ad2ac64c-1c59-43f6-8c59-ff5c68c70e7f.png) Internet is connected: ![image](https://user-images.githubusercontent.com/5672108/187080652-a1383334-8672-4df2-9811-d4030861fdca.png) Related AppCheck code: https://github.com/firebase/firebase-js-sdk/blob/f84cacd709456d4d8925343f8d6a737b7db71c61/packages/app-check/src/client.ts#L69 Not sure if...

This morning I encountered a **different** infinite loop in production: This time _no requests_ in the Network tab at all, but infinite loop of warnings in the Console tab: ![image](https://user-images.githubusercontent.com/5672108/187618791-1491550b-afd8-4fe1-a962-3bae18add04e.png)...

Following my last two messages, this morning I encountered a third-**different** error loop in production. This time no login loop like Aug 28, and no infinite warnings like Aug 31,...

Quilljs.com homepage source: https://github.com/quilljs/quill/blob/develop/docs/index.html More examples: https://quilljs.com/playground/ All toolbar formats: https://quilljs.com/docs/formats/ Full example: https://quilljs.com/standalone/full/ (right click -> View page source) Documentation: https://quilljs.com/docs/quickstart/

Update: Seems like this is related to **pre-rendering**, which causes the ReCaptcha library to be loaded twice.

> check that the top-level document is actually scrollable and not some container further down. @crisbeto's observation is correct - I noticed the same issue when the virtual scroll had...

Update: I found a solution for my case (virtual scroll inside a `mat-drawer-content`, which expands to fit the available height). Instead of using the `scrollWindow` directive, Angular CDK offers another...

Related: - https://material.io/blog/material-3-carousel-research-design - the evolution of the Material 3 carousel (2023) - https://m3.material.io/components/carousel/overview Material Design 3 Carousel Component ![image](https://github.com/angular/components/assets/5672108/9d4357d3-000e-4f46-9a45-5ab2893026c9)

**Update:** Seems like the docs site [rxjs.dev](https://rxjs.dev/) has finally been updated (so perhaps this issue could be closed). ![image](https://user-images.githubusercontent.com/5672108/204303061-06ec5fd9-ce76-4b4f-9bb8-9790dbfb193f.png)

I'm getting error `var(--theme-primary-500) is not a color`. It seems like we can't use CSS variables anymore with Material themes? Dynamic theme is inspired by https://stackblitz.com/edit/angular-material-theming-playground?file=src%2Fstyles%2F_var.scss ```scss $dynamic-theme-primary: ( 50...