You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error 1
That can be suppressed in VS Code only (not resolved) by preceding with // eslint-disable-next-line @next/next/no-async-client-component. When I run yarn run build, the build fails for the same issue: Type error: Type '{ children: Element; initialNodes: Node[]; initialEdges: Edge[]; }' is not assignable to type 'IntrinsicAttributes & { children?: ReactNode; }'. Property 'initialNodes' does not exist on type 'IntrinsicAttributes & { children?: ReactNode; }'.
Error 2
I haven't found a fix. This is likely a React 18 types issue. It would be helpful to know how you've solved it, if you have.
Error 3
This can be suppressed (not resolved) by preceding each size: line with // @ts-ignore TS2322.
Errors 2 and 3 are nuisance -- can be suppressed to reduce IDE noise, although that's not as safe as possible.
However error 1 prevents the app from being built. It can be run via yarn run dev, but yarn run build fails.
May matter -- I'm running Node v21.7.1. Note the repo doesn't specify what Node version to use.
The text was updated successfully, but these errors were encountered:
chris-braidwell
changed the title
Errors upon viewing unchanged example source code
Errors upon viewing unchanged example source code -- reactflow-nextjs-app-router
May 20, 2024
chris-braidwell
changed the title
Errors upon viewing unchanged example source code -- reactflow-nextjs-app-router
Errors in unchanged example source code -- reactflow-nextjs-app-router
May 20, 2024
cd reactflow-nextjs-app-router
yarn install
Error 1
That can be suppressed in VS Code only (not resolved) by preceding with
// eslint-disable-next-line @next/next/no-async-client-component
. When I runyarn run build
, the build fails for the same issue:Type error: Type '{ children: Element; initialNodes: Node[]; initialEdges: Edge[]; }' is not assignable to type 'IntrinsicAttributes & { children?: ReactNode; }'. Property 'initialNodes' does not exist on type 'IntrinsicAttributes & { children?: ReactNode; }'.
Error 2
I haven't found a fix. This is likely a React 18 types issue. It would be helpful to know how you've solved it, if you have.
Error 3
This can be suppressed (not resolved) by preceding each
size:
line with// @ts-ignore TS2322
.Errors 2 and 3 are nuisance -- can be suppressed to reduce IDE noise, although that's not as safe as possible.
However error 1 prevents the app from being built. It can be run via
yarn run dev
, butyarn run build
fails.May matter -- I'm running Node v21.7.1. Note the repo doesn't specify what Node version to use.
See related #6.
The text was updated successfully, but these errors were encountered: