Remzi Atay

Results 4 issues of Remzi Atay

Basically it's possible to inject dirty html: ```js const striked = 'test'; console.log({striked}); console.log(test); console.log({striked}); ``` This is the output: ```html <strike>test</strike> test test ``` Expected output: ```html <strike>test</strike> test...

Fixed both vertical and horizontal scrollbars showing after closing a pop-up bug

`firebaseui.auth.AnonymousAuthProvider.PROVIDER_ID` is not accepted as a `signInOptions` value since `firebaseui` can't be imported. Solution is using `'anonymous'` string. Can be mentioned in README or exported from firebaseui namespace.

Hello, https://github.com/emilkowalski/sonner/blob/main/website/src/pages/getting-started.mdx?plain=1#L37-L51 The documentation states that `Toaster` component can be placed **anywhere** and gives an example where it's placed after children. However, if you want to show a toast on...