From 0126a70d6406b3d4b2bc0e873263d6b38a2787f1 Mon Sep 17 00:00:00 2001
From: Julia Friesel <julia.friesel@gmail.com>
Date: Sun, 23 Dec 2018 18:38:25 +0100
Subject: [PATCH] Clean up

---
 components/cycle-day/symptoms/action-button-footer.js | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/components/cycle-day/symptoms/action-button-footer.js b/components/cycle-day/symptoms/action-button-footer.js
index 9da25e27..5f666e97 100644
--- a/components/cycle-day/symptoms/action-button-footer.js
+++ b/components/cycle-day/symptoms/action-button-footer.js
@@ -45,8 +45,7 @@ export default class ActionButtonFooter extends Component {
         title: labels.save,
         action: () => {
           if(saveDisabled) {
-            ToastAndroid.show(labels.disabledInfo, ToastAndroid.LONG);
-            console.log()
+            ToastAndroid.show(labels.disabledInfo, ToastAndroid.LONG)
           } else {
             saveAction()
             if (autoShowDayView) navigateToOverView()
@@ -62,7 +61,7 @@ export default class ActionButtonFooter extends Component {
         {buttons.map(({ title, action, disabledCondition, icon }, i) => {
           const textStyle = [styles.menuText]
           if (disabledCondition) {
-            textStyle.push(styles.menuTextInActive);
+            textStyle.push(styles.menuTextInActive)
           }
           const iconStyle = disabledCondition ?
             Object.assign(
-- 
GitLab