File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ @implementation RNFlingGestureHandler
159
159
160
160
- (instancetype )initWithTag : (NSNumber *)tag
161
161
{
162
- RCTLogWarn (@" Fling gesture handler is not supported on macOS" );
162
+ RCTLogWarn (@" FlingGestureHandler is not supported on macOS" );
163
163
if ((self = [super initWithTag: tag])) {
164
164
_recognizer = [NSGestureRecognizer alloc ];
165
165
}
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ @implementation RNHoverGestureHandler {
87
87
- (instancetype )initWithTag : (NSNumber *)tag
88
88
{
89
89
#if TARGET_OS_TV
90
- RCTLogWarn (@" Hover gesture handler is not supported on tvOS" );
90
+ RCTLogWarn (@" HoverGestureHandler is not supported on tvOS" );
91
91
#endif
92
92
93
93
if ((self = [super initWithTag: tag])) {
@@ -160,7 +160,7 @@ @implementation RNHoverGestureHandler
160
160
161
161
- (instancetype )initWithTag : (NSNumber *)tag
162
162
{
163
- RCTLogWarn (@" Hover gesture handler is not supported on macOS" );
163
+ RCTLogWarn (@" HoverGestureHandler is not supported on macOS" );
164
164
if ((self = [super initWithTag: tag])) {
165
165
_recognizer = [NSGestureRecognizer alloc ];
166
166
}
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ @implementation RNLongPressGestureHandler
190
190
191
191
- (instancetype )initWithTag : (NSNumber *)tag
192
192
{
193
- RCTLogWarn (@" Long press gesture handler is not supported on macOS" );
193
+ RCTLogWarn (@" LongPressGestureHandler is not supported on macOS" );
194
194
if ((self = [super initWithTag: tag])) {
195
195
_recognizer = [NSGestureRecognizer alloc ];
196
196
}
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ @implementation RNManualGestureHandler
95
95
96
96
- (instancetype )initWithTag : (NSNumber *)tag
97
97
{
98
- RCTLogWarn (@" Manual gesture handler is not supported on macOS" );
98
+ RCTLogWarn (@" ManualGestureHandler is not supported on macOS" );
99
99
if ((self = [super initWithTag: tag])) {
100
100
_recognizer = [NSGestureRecognizer alloc ];
101
101
}
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ @implementation RNNativeViewGestureHandler
216
216
217
217
- (instancetype )initWithTag : (NSNumber *)tag
218
218
{
219
- RCTLogWarn (@" Manual gesture handler is not supported on macOS" );
219
+ RCTLogWarn (@" NativeViewGestureHandler is not supported on macOS" );
220
220
if ((self = [super initWithTag: tag])) {
221
221
_recognizer = [NSGestureRecognizer alloc ];
222
222
}
You can’t perform that action at this time.
0 commit comments