diff --git a/Libraries/TurboModule/TurboModuleRegistry.js b/Libraries/TurboModule/TurboModuleRegistry.js index 105089391ce..c69f0f032ab 100644 --- a/Libraries/TurboModule/TurboModuleRegistry.js +++ b/Libraries/TurboModule/TurboModuleRegistry.js @@ -26,6 +26,10 @@ function requireModule(name: string): ?T { if (turboModuleProxy != null) { const module: ?T = turboModuleProxy(name); + if (module == null) { + // Common fixes: Verify the TurboModule is registered in the native binary, and adopts the code generated type-safe Spec base class. + console.info('Unable to get iOS TurboModule for ' + name + '.'); + } return module; }