chore(docs): fix syntax error on code example

This commit is contained in:
Bereket Engida
2025-02-24 08:09:37 +03:00
parent 8ba7a9ceae
commit 3009797045

View File

@@ -353,7 +353,7 @@ Table: `twoFactor`
<DatabaseTable
fields={[
{ name: "userId", type: "string", description: "The id of the user", isForeignKey: true }
{ name: "userId", type: "string", description: "The id of the user", isForeignKey: true },
{ name: "secret", type: "string", description: "The secret used to generate the TOTP code.", isOptional: true },
{ name: "backupCodes", type: "string", description: "The backup codes used to recover access to the account if the user loses access to their phone or email.", isOptional: true },
]}