Skip to content

Commit

Permalink
docs: fixes the biometrics option in docs (#247)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
jfkisafk authored May 27, 2024
1 parent c377153 commit 290195c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion documentation/pages/personal/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dcli configure save-master-password false
You can unlock the CLI with your biometrics (Touch ID, Face ID) if your machine supports it (only macOS for now).

```sh copy
dcli configure user-presence --method biometric
dcli configure user-presence --method biometrics
```

And to disable it:
Expand Down
2 changes: 1 addition & 1 deletion documentation/pages/security.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ refer to the [security whitepaper](https://www.dashlane.com/download/whitepaper-

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

0 comments on commit 290195c

Please sign in to comment.