Amman Vedi

Results 9 comments of Amman Vedi

Ah ok so i have found the code for determining ordering ``` export function isClockWiseOrder(innerCycleWithCoords) { // See: https://stackoverflow.com/a/1165943 and http://blog.element84.com/polygon-winding.html let i = 0; let twiceEnclosedArea = 0; let...

Okay i have tried this and here are my steps ``` git clone https://github.com/ory/docs.git cd docs/code-examples/protect-page-login/expressjs npm install ``` i then edit the proxy npm script so it contains the...

Seeing the same issue when shadow dom is disabled. Adding a child div seems to work for now. As far as i see 1. web component mounts in react ```...

Yes i also have the same need. I want to have a storybook that is just mdx documentation. And in the MDX i want to embed stories. However i cannot...

yeah, ive just found this issue also, why hasnt this been fixed since 2022? it basically makes the types for enriched activities unusable

Came across this and same issue as @joaosousafranco ``` jest.mock('native-base', () => { console.log(jest.requireActual('native-base')) return { ...jest.requireActual('native-base'), Collapse: (props: ICollapseProps) => { if (props.isOpen) { props.onAnimationEnd?.() } return props.isOpen ?...