-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Closed as not planned
Closed as not planned
Copy link
Labels
Description
Reproduction
export default function Page() {
const promise = loadData();
return (
<ErrorBoundary>
<Suspense fallback={<Loader />}>
<Detail promise={promise} />
</Suspense>
</ErrorBoundary>
);
}The actual project is here.
System Info
System:
OS: macOS 15.0.1
CPU: (16) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
Memory: 689.23 MB / 64.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 22.16.0 - ~/.nvm/versions/node/v22.16.0/bin/node
Yarn: 1.22.22 - ~/.nvm/versions/node/v22.16.0/bin/yarn
npm: 10.9.2 - ~/.nvm/versions/node/v22.16.0/bin/npm
pnpm: 10.17.1 - ~/.nvm/versions/node/v22.16.0/bin/pnpm
Browsers:
Chrome: 140.0.7339.214
Safari: 18.0.1Used Package Manager
npm
Expected Behavior
On any code change, the app hot-reloads / re-renders.
Actual Behavior
On any code change, the app keeps re-rendering in an infinite loop.