Skip to content

Commit 7a7b6ca

Browse files
authored
fix: typo in arch definition (#1367)
## 📜 Description Changed `RCT_NEW_ARCH_ENABLE` to `RCT_NEW_ARCH_ENABLED`. ## 💡 Motivation and Context In general I'm not sure how this code could be properly compiled. But anyway it's unintended typo and I'm fixing it here. Closes #1366 ## 📢 Changelog <!-- High level overview of important changes --> <!-- For example: fixed status bar manipulation; added new types declarations; --> <!-- If your changes don't affect one of platform/language below - then remove this platform/language --> ### iOS - Changed `RCT_NEW_ARCH_ENABLE` to `RCT_NEW_ARCH_ENABLED`. ## 🤔 How Has This Been Tested? Verified by CI. ## 📸 Screenshots (if appropriate): <img width="591" height="103" alt="image" src="https://github.com/user-attachments/assets/f489162b-8811-4298-bae7-ecc8a771edbe" /> ## 📝 Checklist - [x] CI successfully passed - [x] I added new mocks and corresponding unit-tests if library API was changed
1 parent 3c1b189 commit 7a7b6ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ios/views/ClippingScrollViewDecoratorViewManager.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ - (void)didMoveToWindow
221221
}
222222
}
223223

224-
#ifdef RCT_NEW_ARCH_ENABLE
224+
#ifdef RCT_NEW_ARCH_ENABLED
225225
Class<RCTComponentViewProtocol> ClippingScrollViewDecoratorViewCls(void)
226226
{
227227
return ClippingScrollViewDecoratorView.class;

0 commit comments

Comments
 (0)