Skip to content

Commit bbb52aa

Browse files
ken0nekfacebook-github-bot
authored andcommitted
Fix Fabric debug message when we set fabric_enabled = false in rn-tester (#32502)
Summary: The debug message stays `Building RNTester with Fabric enabled.` even if we set `fabric_enabled = false` This pull request changes the message like below when `fabric_enabled = false` `Building RNTester with Fabric disabled.` ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [iOS] [Fixed] - Fix the debug message for Fabric in rn-tester Pull Request resolved: #32502 Reviewed By: sota000 Differential Revision: D32027858 Pulled By: lunaleaps fbshipit-source-id: baf5301581e354f588830acd12a5e8171799b1ca
1 parent 70785e3 commit bbb52aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/rn-tester/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ end
2121
def pods()
2222
project 'RNTesterPods.xcodeproj'
2323

24-
puts "Building RNTester with Fabric enabled."
2524
fabric_enabled = true
25+
puts "Building RNTester with Fabric #{fabric_enabled ? "enabled" : "disabled"}."
2626

2727
prefix_path = "../.."
2828
use_react_native!(path: prefix_path, fabric_enabled: fabric_enabled, hermes_enabled: ENV['USE_HERMES'] == '1')

0 commit comments

Comments
 (0)