Skip to content

Commit

Permalink
chore: increase password length, and add symbols to the mix
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Aug 19, 2022
1 parent 57b53ed commit ce640c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/client/routes/home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ const Home = () => {
if (enablePassword) {
setPassword(
passwordGenerator.generate({
length: 12,
length: 16,
numbers: true,
strict: true,
symbols: true,
})
);
} else {
Expand Down

0 comments on commit ce640c2

Please sign in to comment.