Skip to content

Commit ab1a4a7

Browse files
committed
fix: lint issues
1 parent a2db0ca commit ab1a4a7

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

docusaurus/docs/reactnative/guides/custom-poll-flow.mdx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,9 @@ import { createStackNavigator } from '@react-navigation/stack';
644644
// ... rest of the components
645645

646646
// highlight-start
647-
const LoadingIndicator = () => { /* some LoadingIndicator logic here */ }
647+
const LoadingIndicator = () => {
648+
/* some LoadingIndicator logic here */
649+
};
648650

649651
const MyItem = ({ item }) => {
650652
const { answer_text, user } = item;
@@ -679,11 +681,7 @@ const PollAnswersScreen = ({
679681
<SafeAreaView style={{ flex: 1 }}>
680682
<PollModalHeader title={'All Poll Answers'} onPress={() => navigation.goBack()} />
681683
// highlight-start
682-
<PollAnswersList
683-
message={message}
684-
poll={poll}
685-
PollAnswersListContent={MyPollAnswersContent}
686-
/>
684+
<PollAnswersList message={message} poll={poll} PollAnswersListContent={MyPollAnswersContent} />
687685
// highlight-end
688686
</SafeAreaView>
689687
);

0 commit comments

Comments
 (0)