Skip to content

Commit

Permalink
iOS: fix RN 0.76 import in Session Replay
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-saia-datadog committed Feb 3, 2025
1 parent e3f8f42 commit a853b76
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@
#import "RCTFabricWrapper.h"

#if RCT_NEW_ARCH_ENABLED
#import "RCTVersion.h"

#import <React-RCTFabric/React/RCTParagraphComponentView.h>
#import <React-RCTFabric/React/RCTConversions.h>

#if RCT_VERSION_MINOR > 75
#import <React-FabricComponents/react/renderer/components/text/ParagraphProps.h>
#else
#import <React-Fabric/react/renderer/components/text/ParagraphProps.h>
#import "RCTVersion.h"
#endif


namespace rct = facebook::react;
#endif

Expand Down

0 comments on commit a853b76

Please sign in to comment.