We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In components/PostDetails line 113 @ts-ignore was used to bypass a typing error. It was done in order to pass vercel CD checks
{/* @ts-ignore */} {post.content.raw.children.map((typeObj, index) => { const children: ContentType = typeObj.children.map((item, itemindex) => getContentFragment(itemindex, item.text, item) );
Error: raw is not defined in type: string
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In components/PostDetails line 113 @ts-ignore was used to bypass a typing error. It was done in order to pass vercel CD checks
{/* @ts-ignore */} {post.content.raw.children.map((typeObj, index) => { const children: ContentType = typeObj.children.map((item, itemindex) => getContentFragment(itemindex, item.text, item) );
Error: raw is not defined in type: string
The text was updated successfully, but these errors were encountered: