diff --git a/resources/views/barobill/eaccount/index.blade.php b/resources/views/barobill/eaccount/index.blade.php index 1f123450..4ade8431 100644 --- a/resources/views/barobill/eaccount/index.blade.php +++ b/resources/views/barobill/eaccount/index.blade.php @@ -817,15 +817,9 @@ className="w-full px-2 py-1 text-sm border border-stone-200 rounded focus:ring-2 useEffect(() => { loadAccounts(); loadAccountCodes(); + loadTransactions(); }, []); - // 날짜 또는 계좌 변경 시 거래내역 로드 - useEffect(() => { - if (dateFrom && dateTo) { - loadTransactions(); - } - }, [dateFrom, dateTo, selectedAccount]); - const loadAccounts = async () => { try { const response = await fetch(API.accounts);