mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
Add missing break statement (#1503)
This commit is contained in:
@@ -90,11 +90,12 @@ export class NativeMessagingBackground {
|
|||||||
confirmText: this.i18nService.t('ok'),
|
confirmText: this.i18nService.t('ok'),
|
||||||
type: 'error',
|
type: 'error',
|
||||||
});
|
});
|
||||||
|
break;
|
||||||
case 'verifyFingerprint': {
|
case 'verifyFingerprint': {
|
||||||
if (this.sharedSecret == null) {
|
if (this.sharedSecret == null) {
|
||||||
this.showFingerprintDialog();
|
this.showFingerprintDialog();
|
||||||
}
|
}
|
||||||
return;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
// Ignore since it belongs to another device
|
// Ignore since it belongs to another device
|
||||||
|
|||||||
Reference in New Issue
Block a user