From a3b01e9a3003e029a6f0766e2beedd17bbf4c5a0 Mon Sep 17 00:00:00 2001 From: Francesco Esposito <33671357+frab1t@users.noreply.github.com> Date: Thu, 21 Mar 2019 15:05:41 +0100 Subject: [PATCH] Fix seconds --- src/components/Timer.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/Timer.js b/src/components/Timer.js index c2da7b0..a87fa1d 100644 --- a/src/components/Timer.js +++ b/src/components/Timer.js @@ -9,10 +9,9 @@ class Timer extends Component { constructor(props) { super(props); this.state = { - seconds: 4, + seconds: 1500, started: false, - send: false, - title: '' + send: false }; this.handleNotification = this.handleNotification.bind(this);