diff --git a/components/stats.js b/components/stats.js
index d192f04d5fe813e26797c4ccb395757762fb09ff..d9ec69c48079914283658189049e30ad0febf58a 100644
--- a/components/stats.js
+++ b/components/stats.js
@@ -9,17 +9,14 @@ import cycleModule from '../lib/cycle'
 import {getCycleLengthStats as getCycleInfo} from '../lib/cycle-length'
 import {stats as labels} from '../i18n/en/labels'
 import AppText from './app-text'
-import { getCycleStartsSortedByDate } from '../db'
 
 export default class Stats extends Component {
   render() {
-    const allMensesStarts = getCycleStartsSortedByDate()
-    const atLeastOneCycle = allMensesStarts.length > 1
-    let cycleLengths
+    const cycleLengths = cycleModule().getAllCycleLengths()
+    const atLeastOneCycle = cycleLengths.length > 1
     let numberOfCycles
     let cycleInfo
     if (atLeastOneCycle) {
-      cycleLengths = cycleModule().getAllCycleLengths()
       numberOfCycles = cycleLengths.length
       if (numberOfCycles > 1) {
         cycleInfo = getCycleInfo(cycleLengths)