Skip to content
New issue

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

fix(overmind-react): fix runtime error with react@19 caused by moved … #621

Merged
merged 1 commit into from
Feb 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions packages/overmind-react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,19 @@ function useForceRerender() {
}

let currentComponentInstanceId = 0
const { ReactCurrentOwner } = (React as any)
.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED

const {
__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: oldReactInternals,
__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE:
newReactInternals,
} = React as any

const useCurrentComponent = () => {
return ReactCurrentOwner &&
ReactCurrentOwner.current &&
ReactCurrentOwner.current.elementType
? ReactCurrentOwner.current.elementType
: {}
return (
oldReactInternals?.ReactCurrentOwner?.current?.elementType ??
newReactInternals?.A?.getOwner?.()?.elementType ??
{}
)
}

const useState = <Context extends IContext<{ state: {} }>>(
Expand Down