Fix later button

This commit is contained in:
J. Ryan Stinnett 2020-01-29 15:14:56 +00:00
parent f12fe984e5
commit b5914f5c2b

View file

@ -32,7 +32,8 @@ export default class UnverifiedSessionToast extends React.PureComponent {
}; };
_onLaterClick = () => { _onLaterClick = () => {
DeviceListener.sharedInstance().dismissVerification(this.props.deviceId); const { device } = this.props;
DeviceListener.sharedInstance().dismissVerification(device.deviceId);
}; };
_onReviewClick = async () => { _onReviewClick = async () => {