Thomas Howlett
Thomas Howlett
I'm playing around with creating a component that supports multiple rich text editors (like tiptap or Slate), take a look and let me know what you think https://github.com/mui/material-ui/pull/34474
I ran into this error as well and fixed it by using regex in `serverDependenciesToBundle`: ``` serverDependenciesToBundle: [/.*@ionic.*/, /.*ionicons.*/, /.*@stencil.*/], ```
I ran into this error when I was accidentally passing the wrong resource in the api call **Wrong resource** ``` $url = "$($env:IDENTITY_ENDPOINT)?api-version=2021-02-01&resource=https%3A%2F%2Fmanagement.azure.com%2F" ``` **Correct resource** ``` $url = "$($env:IDENTITY_ENDPOINT)?api-version=2021-02-01&resource=https%3A%2F%2Fossrdbms-aad.database.windows.net"...