Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ const InputField = forwardRef<HTMLInputElement, InputFieldProps>(
? new Date().toISOString().split('T')[0]
: undefined
}
autoComplete={
type === 'password'
? 'current-password'
: type === 'passwordConfirm'
? 'new-password'
: undefined
}
/>
{(type === 'password' || type === 'passwordConfirm') && (
<button
Expand Down
40 changes: 40 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@tanstack/react-query-devtools": "^5.62.8",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"framer-motion": "^11.15.0",
"next": "^15.1.2",
"postcss-nesting": "^13.0.1",
"react": "^19.0.0",
Expand Down
Loading
Loading