From 06fe8487d15f59ee7505d569a9acf7375a05ca5c Mon Sep 17 00:00:00 2001 From: chaeseungyun <101871802+chaeseungyun@users.noreply.github.com> Date: Mon, 15 Jul 2024 11:01:36 +0900 Subject: [PATCH] =?UTF-8?q?[=EB=B9=84=EC=A6=88=EB=8B=88=EC=8A=A4]=20?= =?UTF-8?q?=EB=B9=84=EB=B0=80=EB=B2=88=ED=98=B8=20=EC=9E=90=EB=8F=99?= =?UTF-8?q?=EC=99=84=EC=84=B1=20=EB=A7=89=EA=B8=B0=20(#377)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 비밀번호 자동완성 방지 * fix: 계좌번호 바텀시트 마운트 시 계좌번호 input에 포커스 --- src/page/Auth/Login/index.tsx | 1 + src/page/MyShopPage/components/BankList/index.tsx | 12 ++++++++++-- .../components/EditShopInfoModal/index.tsx | 4 +++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/page/Auth/Login/index.tsx b/src/page/Auth/Login/index.tsx index ab3e4f27..ee3313aa 100644 --- a/src/page/Auth/Login/index.tsx +++ b/src/page/Auth/Login/index.tsx @@ -72,6 +72,7 @@ export default function Login() { type={isBlind ? 'text' : 'password'} placeholder={isMobile ? '비밀번호' : '비밀번호 입력'} {...register('password')} + autoComplete="new-password" />