Skip to content

Commit

Permalink
COM-3877 - fix reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
Manon Palin committed Jan 15, 2025
1 parent c5d25e2 commit 225405a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/courses/profile/AdminCourseProfile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ const AdminCourseProfile = ({ route, navigation }: AdminCourseProfileProps) => {
{!!questionnaireQRCodes.length && <View style={styles.sectionContainer}>
<View style={commonStyles.sectionDelimiter} />
<Text style={styles.sectionTitle}>Questionnaires</Text>
<FlatList data={questionnaireQRCodes} keyExtractor={(item, idx) => `qrcode_${idx}`}
<FlatList data={questionnaireQRCodes} keyExtractor={(item, idx) => `qrcode_${idx}`} scrollEnabled={false}
renderItem={({ item }) => renderQuestionnaireCell(item)}
showsHorizontalScrollIndicator={false} />
</View>}
Expand Down

0 comments on commit 225405a

Please sign in to comment.