Skip to content

Commit

Permalink
fix(doc): await missing in example (#1222)
Browse files Browse the repository at this point in the history
  • Loading branch information
FredTreg authored Oct 27, 2023
1 parent bf38689 commit ba6f0bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ await db.transaction((trx) => {
await trx.key.insert({
id: createKeyId("username", username),
user_id: userId,
hashed_password: generateLuciaPasswordHash(password)
hashed_password: await generateLuciaPasswordHash(password)
});
});
```
Expand Down

0 comments on commit ba6f0bb

Please sign in to comment.