diff --git a/App.tsx b/App.tsx index 759e09f..5fd064d 100644 --- a/App.tsx +++ b/App.tsx @@ -321,16 +321,7 @@ const App: React.FC = () => { }; }, [addLog]); // Intentionally minimal deps - // --- Backend Download Logic --- - const handleDownloadBackend = () => { - addLog('info', '백엔드 실행 파일 다운로드를 시작합니다 (v1.3)...'); - const a = document.createElement('a'); - a.href = './webftp-backend.exe'; - a.download = 'webftp-backend.exe'; - document.body.appendChild(a); - a.click(); - document.body.removeChild(a); - }; + // --- Connection Handlers --- @@ -686,13 +677,14 @@ const App: React.FC = () => { {connection.connecting ?
: (connection.connected ? <> 연결 해제 : '빠른 연결')} - +