Skip to content

Commit 7c33c6f

Browse files
authored
fix example title (#855)
## 📜 Description Fixed a typo in the title of the example repository. ## 💡 Motivation and Context This change corrects a minor typographical error in the repository example repo to maintain consistency and readability. ## 📢 Changelog ### JS - Fixed typo in the example repository. ### iOS - No changes. ### Android - No changes. ## 🤔 How Has This Been Tested? Manually reviewed the updated title to ensure correctness. No functional code changes were made, so no additional testing was required. ## 📸 Screenshots (if appropriate): N/A ## 📝 Checklist - [x] CI successfully passed - [x] I added new mocks and corresponding unit-tests if library API was changed
1 parent efd038c commit 7c33c6f

File tree

2 files changed

+2
-2
lines changed
  • FabricExample/src/navigation/ExamplesStack
  • example/src/navigation/ExamplesStack

2 files changed

+2
-2
lines changed

FabricExample/src/navigation/ExamplesStack/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const ExamplesStack = () => (
132132
<Stack.Screen
133133
component={ReanimatedChatFlatList}
134134
name={ScreenNames.REANIMATED_CHAT_FLAT_LIST}
135-
options={options[ScreenNames.REANIMATED_CHAT]}
135+
options={options[ScreenNames.REANIMATED_CHAT_FLAT_LIST]}
136136
/>
137137
<Stack.Screen
138138
component={Events}

example/src/navigation/ExamplesStack/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const ExamplesStack = () => (
132132
<Stack.Screen
133133
component={ReanimatedChatFlatList}
134134
name={ScreenNames.REANIMATED_CHAT_FLAT_LIST}
135-
options={options[ScreenNames.REANIMATED_CHAT]}
135+
options={options[ScreenNames.REANIMATED_CHAT_FLAT_LIST]}
136136
/>
137137
<Stack.Screen
138138
component={Events}

0 commit comments

Comments
 (0)