Skip to content

Commit 72143dd

Browse files
committed
docs: title can't be empty
1 parent a6a1b9c commit 72143dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const canAuthenticate = (): Promise<boolean> => {
1616
* but will be rejected when not with an error message
1717
*/
1818
const requestBioAuth = (
19-
/** title of prompt (can be an empty string) */
19+
/** title of prompt */
2020
promptTitle: string,
2121
/** The app-provided reason for requesting authentication, which displays in the authentication dialog presented to the user. */
2222
promptMessage: string

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"resolveJsonModule": true,
2424
"skipLibCheck": true,
2525
"strict": true,
26-
"target": "esnext"
26+
"target": "esnext",
27+
"removeComments": false
2728
}
2829
}

0 commit comments

Comments
 (0)