Remove unneeded imports

This commit is contained in:
Julia Friesel
2018-08-20 17:13:03 +02:00
parent 90e0cdffea
commit fde9a6cbc3
2 changed files with 2 additions and 4 deletions
-2
View File
@@ -1,7 +1,5 @@
import React, { Component } from 'react'
import { View } from 'react-native'
import { CalendarList } from 'react-native-calendars'
import * as styles from '../styles'
import { getOrCreateCycleDay, bleedingDaysSortedByDate } from '../db'
export default class CalendarView extends Component {
+2 -2
View File
@@ -167,8 +167,8 @@ function getLabel(symptomName, symptom) {
if (!symptom) return
const label = labels[symptomName](symptom)
if (label.length < 50) return label
return label.slice(0, 47) + '...'
if (label.length < 45) return label
return label.slice(0, 42) + '...'
}
class SymptomBox extends Component {