Formatting fix

This commit is contained in:
mashazyu
2019-11-17 20:39:00 +01:00
committed by Sofiya Tepikin
parent 0adbf3436b
commit 03a235d8cb
+8 -9
View File
@@ -13,15 +13,14 @@ const YAxis = ({ height, symptomsToDisplay, symptomsSectionHeight }) => {
return (
<View>
<View style={[styles.yAxis, {height: symptomsSectionHeight}]}>
{symptomsToDisplay.map(symptom => {
return (
<SymptomIcon
key={symptom}
symptom={symptom}
height={symptomIconHeight}
/>
)
})}
{symptomsToDisplay.map(symptom => (
<SymptomIcon
key={symptom}
symptom={symptom}
height={symptomIconHeight}
/>
)
)}
</View>
<TickList height={height} />
<ChartLegend />