Roger Tuan

Results 15 issues of Roger Tuan

### 📚 Subject area/topic On-demand rendering, setting response headers in layouts ### 📋 Page(s) affected (or suggested, for new content) https://docs.astro.build/en/guides/on-demand-rendering/#on-demand-rendering-features ### 📋 Description of content that is out-of-date or...

improve or update documentation

Potentially fixes #1827 Given an input like: ```js let sparseArrayBroken = []; sparseArrayBroken[50] = "this will cause a crash"; ``` Currently `getCollectionEntries()` and its `isRange()` call does not properly handle...

If you try to show a sparse array with 51 or more elements, JSONTree crashes with `Cannot read properties of undefined (reading 'to')` from [`isRange()`](https://github.com/reduxjs/redux-devtools/blob/main/packages/react-json-tree/src/JSONNestedNode.tsx#L29-L31) This happens any time a...

Fix for https://github.com/datocms/react-datocms/issues/113 - Updated typedef to clarify that either `muxPlaybackId` or `playbackId` is required - Added typedoc

When passing a `data` object to the VideoPlayer, `muxPlaybackId` (or `playbackId`) is required, but not indicated as such in the type: ```ts export type Video = { /** Title attribute...