Skip to content

Commit

Permalink
Fix ReactNativeHost to have default UIManagerProvider as null (#41593)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #41593

Fixing fallback to `getJSIModule()` by defaulting `getUIManagerProvider()` correctly to null

Reviewed By: christophpurrer

Differential Revision: D51500901

fbshipit-source-id: 91b692e6c88d736970b652179e14bc524a411d0e
  • Loading branch information
arushikesarwani94 authored and facebook-github-bot committed Nov 21, 2023
1 parent ac1cdaa commit a6964b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ protected final Application getApplication() {
}

protected @Nullable UIManagerProvider getUIManagerProvider() {
return reactApplicationContext -> null;
return null;
}

/** Returns whether or not to treat it as normal if Activity is null. */
Expand Down

0 comments on commit a6964b3

Please sign in to comment.