From fbfc4d66211fbc93757a78a1dacf2b63cfe19f49 Mon Sep 17 00:00:00 2001 From: emelko Date: Sat, 5 Dec 2020 12:10:33 +0100 Subject: [PATCH] Remove line-through textDecoration for excluded values --- components/cycle-day/symptom-box.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/components/cycle-day/symptom-box.js b/components/cycle-day/symptom-box.js index b9aeac1..89d83a0 100644 --- a/components/cycle-day/symptom-box.js +++ b/components/cycle-day/symptom-box.js @@ -97,10 +97,6 @@ class SymptomBox extends Component { } } -const excluded = { - textDecorationLine: 'line-through' -} - const hint = { fontSize: Sizes.small, fontStyle: 'italic' @@ -136,7 +132,6 @@ const styles = StyleSheet.create({ }, symptomNameExcluded: { color: Colors.greyDark, - ...excluded }, textContainer: { flexDirection: 'column', @@ -151,7 +146,6 @@ const styles = StyleSheet.create({ }, textExcluded: { color: Colors.grey, - ...excluded } })