Skip to content

Commit

Permalink
Merge pull request #566 from bounswe/MOBILE-565
Browse files Browse the repository at this point in the history
fix(mobile): fix unique key error on Quiz Creation Info
  • Loading branch information
YavizGuldalf authored Nov 24, 2024
2 parents b2f43b8 + ae1e817 commit 203cfd6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mobile/bulingo/app/(tabs)/quizzes/quizCreationInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,8 @@ const QuizCreationInfo = () => {
{row.map((answer, colIndex) => {
const answerIndex = rowIndex * 2 + colIndex;
return (
<Shadow distance={8} startColor="#00000020" endColor="#00000000" offset={[0, 4]}>
<Shadow distance={8} startColor="#00000020" endColor="#00000000" offset={[0, 4]} key={colIndex}>
<TouchableOpacity
key={colIndex}
style={[
styles.answerBox,
correctAnswerIndex === answerIndex
Expand Down

0 comments on commit 203cfd6

Please sign in to comment.