Skip to content

Commit

Permalink
clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidKozdra committed Jun 23, 2024
1 parent 55ab548 commit 8dded72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/dropdowns/CharDropDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function CharDropDown() {
let whiteList = localStorage.getItem("whiteList") ? JSON.parse(localStorage.getItem("whiteList") as string) : charTypes;


return (
return (

<Box>

Expand Down
3 changes: 1 addition & 2 deletions src/utils/generatePassword.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ const generatePassword = (
): ProPasswordReturnType => {

let whiteList = localStorage.getItem("whiteList") ? JSON.parse(localStorage.getItem("whiteList") as string) : ["!@#$%^&*()_+-=[]{}|;:,.<>?"];
// "!@#$%^&*()_+-=[]{}|;:,.<>?"
console.log(whiteList);

const charset = {
upper: "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
lower: "abcdefghijklmnopqrstuvwxyz",
Expand Down

0 comments on commit 8dded72

Please sign in to comment.