Skip to content

Commit 290195c

Browse files
authored
docs: fixes the biometrics option in docs (#247)
The current option indicated in the doc is ``` dcli configure user-presence --method biometric ``` whereas it should be: ``` dcli configure user-presence --method biometrics ``` I received the error when I just copied the command over. Here is the [src](https://github.com/Dashlane/dashlane-cli/blob/c377153edeacd7a328204fd73cad8a825f228cc3/src/commands/configure.ts#L28-L32).
1 parent c377153 commit 290195c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

documentation/pages/personal/authentication.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dcli configure save-master-password false
6464
You can unlock the CLI with your biometrics (Touch ID, Face ID) if your machine supports it (only macOS for now).
6565

6666
```sh copy
67-
dcli configure user-presence --method biometric
67+
dcli configure user-presence --method biometrics
6868
```
6969

7070
And to disable it:

documentation/pages/security.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ refer to the [security whitepaper](https://www.dashlane.com/download/whitepaper-
3434

3535
- You can disable the use of the OS keychain by using the command `dcli configure save-master-password false`. In this case,
3636
you will be asked for the master password every time you start the application.
37-
- You can enable biometrics unlock by using the command `dcli configure user-presence --method biometric`. In this case, you will be
37+
- You can enable biometrics unlock by using the command `dcli configure user-presence --method biometrics`. In this case, you will be
3838
asked for a user presence check (e.g. fingerprint) every time you start the application before the OS password management system is requested.

0 commit comments

Comments
 (0)