Open larsandremoen opened 3 years ago
Hi @7arsandre good spot, happy to take a pull request if you have a fix to hand?
@robcalcroft I will do a PR on this! 👌
Pushed the PR: https://github.com/robcalcroft/react-native-in-app-notification/pull/52 @robcalcroft
Unable to disable the vibration with
vibrate=false
.For me it looks like it's becuase this guard is always
true
due toprevProps.vibrate
always beingtrue
.Modifying the guard to the following seems to be working as intended:
if (this.props.vibrate && this.props.isOpen && !prevProps.isOpen) {...}