File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
client/my-app/src/components/features/settings Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -387,15 +387,15 @@ export default function AccountSettings() {
387387 < div className = "text-[var(--color-primary,#2563eb)] font-semibold mb-4" >
388388 Change Password
389389 </ div >
390- < ChangePasswordBox usrId = { me ?. usr_id } />
390+ < changePasswordBox usrId = { me ?. usr_id } />
391391 </ CardContent >
392392 </ Card >
393393 </ div >
394394 ) ;
395395}
396396
397397/* --------------------------- ChangePassword Box --------------------------- */
398- function ChangePasswordBox ( { usrId } : { usrId ?: number } ) {
398+ function changePasswordBox ( { usrId } : { usrId ?: number } ) {
399399 const [ curPwd , setCurPwd ] = useState ( "" ) ;
400400 const [ newPwd , setNewPwd ] = useState ( "" ) ;
401401 const [ rePwd , setRePwd ] = useState ( "" ) ;
You can’t perform that action at this time.
0 commit comments