1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Revert "[PM-6296] Fix biometrics error prompt when biometrics are temporarily…" (#10373)

This reverts commit 1184c504d1.
This commit is contained in:
Bernd Schoolmann
2024-08-02 13:46:54 +02:00
committed by GitHub
parent 1184c504d1
commit cc45655b86
36 changed files with 101 additions and 265 deletions

View File

@@ -131,6 +131,14 @@ export class CliPlatformUtilsService implements PlatformUtilsService {
throw new Error("Not implemented.");
}
supportsBiometric(): Promise<boolean> {
return Promise.resolve(false);
}
authenticateBiometric(): Promise<boolean> {
return Promise.resolve(false);
}
supportsSecureStorage(): boolean {
return false;
}