AA

Results 153 comments of AA

@PaulAsjes, I also occasionally encounter the following error when updating the token: I found the only mention of the `invalid_grant` error in this PR: https://github.com/workos/workos-node/pull/1078. Why is it being returned...

Here's a tmp workaround: ```tsx const replaceNewlines = (line: string) => { const text = line.split(/\r?\n|\r/g); return ( { text.map((part, index) => ( {index > 0 && } {part} ))...

@MarijnFK my bad, I don't use Strapi with Vue, but the `replaceNewlines` function will be the same in both cases.

Here's a workaround: ```ts const trimBlocksRendererChild = (input: BlocksContent): BlocksContent => { return input.filter(({children}) => { return children.some((child) => { const {text} = child as TextInlineNode; return text?.trim() !== '';...

Could you elaborate on your point about using random keys? Generating a new key on every render will cause the component to unmount, leading to significant performance issues and unpredictable...

Also, I'd like to point out that in the current implementation, ther're no types for the children property.

And `BlocksRendererProps`, `GetPropsFromNode` please

Is there any news? CSS Grid has reached in web inspectors. https://developers.google.com/web/tools/chrome-devtools/css/grid https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector/How_to/Examine_grid_layouts

After a week of use, all user passwords got reset — including the custom admin password. How to restore the admin password is known only to God. All the instructions...