mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
recover and no providers
This commit is contained in:
@@ -67,11 +67,6 @@
|
||||
});
|
||||
};
|
||||
|
||||
$scope.lostApp = function () {
|
||||
$analytics.eventTrack('Selected Lost 2FA App');
|
||||
chrome.tabs.create({ url: 'https://help.bitwarden.com/article/lost-two-step-device/' });
|
||||
};
|
||||
|
||||
$scope.sendEmail = function (doToast) {
|
||||
if ($scope.providerType !== constants.twoFactorProvider.email) {
|
||||
return;
|
||||
@@ -126,7 +121,7 @@
|
||||
providerPriority = provider[0].priority;
|
||||
}
|
||||
}
|
||||
return parseInt(providerType);
|
||||
return providerType == null ? null : parseInt(providerType);
|
||||
}
|
||||
|
||||
function init() {
|
||||
|
||||
Reference in New Issue
Block a user