Eliya Cohen

Results 83 comments of Eliya Cohen

After some research, I discovered that this syntax uses [Recursive Conditional Types](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-1.html#recursive-conditional-types) which were introduced in version 4.1. Thus, it won't work for versions that are lower than 4.1. I'm...

It looks like there's a type error with the following pattern: ```ts const Container = styled.div` // ... ${(p) => { switch (p.variant) { case "X": return css` --primary-color: green;...

@realityfilter thanks for sharing your workaround 🙂 could you please elaborate? we're experiencing this issue as well.

I'm using pnpm, so it's built-in using `pnpm patch @capacitor/ios`

Would be nice if the plugin will support aggregations as well - https://www.opencrud.org/#sec-Queries-Aggregations

Happens to me as well. As a workaround, I add this global setup: ```ts import { beforeAll } from "vitest"; beforeAll(() => { global.ResizeObserver = class ResizeObserver { observe() {...

After doing a bit of some digging, it turns out that apparently, there's no cancel event or any indication for that in some cases, which would probably explain why this...

If I understand correctly: 1. `sql` supports multi stmts. 2. When there's a single stmt, the result should be `T[]`. 3. When there are two stmts, the result should be...