From 8a2c02d573879b04a1bc340187dfde69ad38c628 Mon Sep 17 00:00:00 2001 From: "Vitalii.Retel" Date: Tue, 15 Jun 2021 00:32:53 +0300 Subject: [PATCH] scout: Remove console.log - pitch version --- index.js | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index d30971e..9e0441b 100755 --- a/index.js +++ b/index.js @@ -40,7 +40,6 @@ export default class Toast extends Component { show(text, duration, callback, onPress) { this.duration = typeof duration === 'number' ? duration : DURATION.LENGTH_SHORT; this.callback = callback; - console.log(typeof onPress) if(typeof onPress === 'function') this.onPress = onPress this.setState({ diff --git a/package.json b/package.json index 5671706..d39297b 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-easy-toast", - "version": "2.0.0", + "version": "2.0.1", "description": "A react native module to show toast like android, it works on iOS and Android.", "main": "index.js", "types": "index.d.ts",