From f42a243a3e440b7e5625e10bdb3666386208d24b Mon Sep 17 00:00:00 2001 From: minjilee Date: Mon, 8 Jul 2024 17:51:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=86=B5=EC=9E=A5=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/organisms/ChoiceAccount.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/organisms/ChoiceAccount.tsx b/src/components/organisms/ChoiceAccount.tsx index 8aed460..1a3f354 100644 --- a/src/components/organisms/ChoiceAccount.tsx +++ b/src/components/organisms/ChoiceAccount.tsx @@ -23,6 +23,7 @@ export const ChoiceAccount: FC = ({ const handleChangedAccount = (account: AccountType) => { setSelectedAccountInfo(account); + if (selectedAccount) selectedAccount(account); setShowModal(false); };