Skip to content

Commit

Permalink
feat: set input field type of 2faRecoveryKey (login) to password
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwynr committed Nov 18, 2024
1 parent a3c6ed2 commit e0983d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@filen/web",
"private": false,
"version": "0.1.63",
"version": "0.1.64",
"type": "module",
"description": "Filen Web & Desktop app",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export function Login() {
id="twoFactorCode"
required={true}
autoFocus={true}
type="text"
type="password"
placeholder={t("login.placeholders.normal.2faRecoveryKey")}
value={twoFactorCode}
onChange={e => setTwoFactorCode(e.target.value)}
Expand Down

0 comments on commit e0983d5

Please sign in to comment.