diff --git a/components/chart/chart.js b/components/chart/chart.js
index dc3be06..6d7dff3 100644
--- a/components/chart/chart.js
+++ b/components/chart/chart.js
@@ -176,7 +176,7 @@ export default class CycleChart extends Component {
styles.column.label.date,
styles.yAxisLabels.dateLabel
]}>
- {labels.date}
+ {labels.date.toLowerCase()}
}
diff --git a/components/cycle-day/cycle-day-overview.js b/components/cycle-day/cycle-day-overview.js
index 92b8ac0..88de356 100644
--- a/components/cycle-day/cycle-day-overview.js
+++ b/components/cycle-day/cycle-day-overview.js
@@ -261,7 +261,7 @@ class SymptomBox extends Component {
- {this.props.title}
+ {this.props.title.toLowerCase()}
diff --git a/components/cycle-day/symptoms/action-button-footer.js b/components/cycle-day/symptoms/action-button-footer.js
index 3458550..076b0bb 100644
--- a/components/cycle-day/symptoms/action-button-footer.js
+++ b/components/cycle-day/symptoms/action-button-footer.js
@@ -64,7 +64,6 @@ export default class ActionButtonFooter extends Component {
)
:
iconStyles.menuIcon
-
return (
- {title}
+ {title.toLowerCase()}
)
diff --git a/components/header/cycle-day.js b/components/header/cycle-day.js
index 332b300..b5dbbdf 100644
--- a/components/header/cycle-day.js
+++ b/components/header/cycle-day.js
@@ -10,7 +10,8 @@ import NavigationArrow from './navigation-arrow'
const FormattedDate = ({ date }) => {
const today = LocalDate.now()
const dateToDisplay = LocalDate.parse(date)
- return today.equals(dateToDisplay) ? 'today' : moment(date).format('MMMM Do YYYY')
+ const formattedDate = today.equals(dateToDisplay) ? 'today' : moment(date).format('MMMM Do YYYY')
+ return formattedDate.toLowerCase()
}
export default function CycleDayHeader({ date, ...props }) {
@@ -26,7 +27,7 @@ export default function CycleDayHeader({ date, ...props }) {
{props.cycleDayNumber &&
- Cycle day {props.cycleDayNumber}
+ {`Cycle day ${props.cycleDayNumber}`.toLowerCase()}
}