Fix missing key in workouts for SetForm

This commit is contained in:
Brandon Presley 2022-09-29 13:42:19 +13:00
parent 0ccc9acedf
commit 66c24a96bd

View File

@ -109,7 +109,7 @@ export default function SetForm({
{workouts.length > 0 && !!settings.workouts && ( {workouts.length > 0 && !!settings.workouts && (
<View style={{flexDirection: 'row'}}> <View style={{flexDirection: 'row'}}>
{workouts.map((workout, index) => ( {workouts.map((workout, index) => (
<Text> <Text key={workout}>
<Text <Text
style={ style={
workout === name workout === name