Fix later button

pull/21833/head
J. Ryan Stinnett 2020-01-29 15:14:56 +00:00
parent f12fe984e5
commit b5914f5c2b
1 changed files with 2 additions and 1 deletions

View File

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