From 37bb2890ce44dabf8f16f7ba2159dcd33ef95fc0 Mon Sep 17 00:00:00 2001 From: backuppc Date: Mon, 19 Jan 2026 14:28:38 +0900 Subject: [PATCH] fix: use anchor tag for backend download to show link on hover --- App.tsx | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) 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 ? <> 연결 해제 : '빠른 연결')} - +