Skip to content

Commit

Permalink
nit impl name
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-zimerman committed Sep 19, 2024
1 parent a8f5126 commit fa03cc1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class RNSentryTimeToDisplayPackage extends TurboReactPackage {
@Nullable
@Override
public NativeModule getModule(String name, ReactApplicationContext reactContext) {
if (name.equals(RNSentryTimeToDisplayModule.NAME)) {
if (name.equals(RNSentryTimeToDisplayImpl.NAME)) {
return new RNSentryTimeToDisplayModule(reactContext);
} else {
return null;
Expand All @@ -29,10 +29,10 @@ public ReactModuleInfoProvider getReactModuleInfoProvider() {
final Map<String, ReactModuleInfo> moduleInfos = new HashMap<>();
boolean isTurboModule = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
moduleInfos.put(
RNSentryTimeToDisplayModule.NAME,
RNSentryTimeToDisplayImpl.NAME,
new ReactModuleInfo(
RNSentryTimeToDisplayModule.NAME,
RNSentryTimeToDisplayModule.NAME,
RNSentryTimeToDisplayImpl.NAME,
RNSentryTimeToDisplayImpl.NAME,
false, // canOverrideExistingModule
false, // needsEagerInit
true, // hasConstants
Expand Down

0 comments on commit fa03cc1

Please sign in to comment.