Michael Chang
Michael Chang
After trying random things to solve this issue, I discovered that increasing test timeout (`jest.setTimeout, 30000)` or `test('title', () => {...}, 30000)`) fixed it for me. Disclaimer - I don't...
If you have an exact (string) plural rule (e.g. pluralize.addPluralRule('IP', 'IPs')), I think it's safe to ignore the casing since you've explicitly defined the plural version. Unfortunately, looking at the...
Okay understood - that's what I figured. This is our coveralls repo URL: https://coveralls.io/github/u21/lumos
@afinetooth The volume seems expected to me. My current coveralls setup is that every PR and every master push will trigger the coveralls CI and with a large team, we...
Cause is because isOutsideRange is only being called when focus changes or there's a new isOutsideRange. The modifier is not being triggered when start date or end date changes which...
Analysis so far - [react virtual is triggering `_willUpdate`](https://github.com/TanStack/virtual/blob/main/packages/react-virtual/src/index.tsx#L49-L51) when the new virtual instance is rendered - [`_willUpdate` enters the `if (this.scrollElement !== scrollElement)`](https://github.com/TanStack/virtual/blob/main/packages/virtual-core/src/index.ts#L497) condition. This is because `this.scrollElement` is...
Thanks for the workaround @piecyk 🙏 I've made a PR to update the docs on this: https://github.com/TanStack/virtual/pull/1045