Skip to content

Commit 72e4864

Browse files
authored
chore: fix imports in bottom accessory (#3439)
## Description Fixes imports in bottom accessory to use `#import "..."` instead of `#import <...>` for our own header files (`RNSDefines`, `RNSConversions`). Thanks to @JustJoostNL for [catching this](#3288 (comment)). ## Changes - use `#import "..."` instead of `#import <...>` for `RNSDefines.h`, `RNSConversions.h` ## Test code and steps to reproduce Run example app. ## Checklist - [x] Ensured that CI passes
1 parent 21c0d33 commit 72e4864

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ios/bottom-tabs/accessory/RNSBottomAccessoryHelper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#import <RNSDefines.h>
3+
#import "RNSDefines.h"
44

55
#if RNS_BOTTOM_ACCESSORY_AVAILABLE
66

ios/bottom-tabs/accessory/RNSBottomTabsAccessoryEventEmitter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#import <RNSDefines.h>
3+
#import "RNSDefines.h"
44

55
#if RNS_BOTTOM_ACCESSORY_AVAILABLE
66

ios/bottom-tabs/accessory/RNSBottomTabsAccessoryEventEmitter.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#if RNS_BOTTOM_ACCESSORY_AVAILABLE
44

5-
#import <RNSConversions.h>
65
#import <React/RCTLog.h>
6+
#import "RNSConversions.h"
77
#if RCT_NEW_ARCH_ENABLED
88
#import <React/RCTConversions.h>
99
#import <react/renderer/components/rnscreens/EventEmitters.h>

0 commit comments

Comments
 (0)