fix(sync-help): SyncSection 도움말 버튼 busy 중 disable 해제

리뷰 minor 반영. busy (저장/테스트/sync 진행) 시 정확히 사용자가
도움말이 가장 필요한 시점이라 disable 회수. read-only 컴포넌트라
race risk 0.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
altair823
2026-05-10 23:40:16 +09:00
parent a5e1c1de35
commit 8cd6382902

View File

@@ -80,7 +80,7 @@ export function SyncSection(): React.ReactElement {
<button onClick={() => { void onTestConnection(); }} disabled={busy !== null || url.trim() === ''} style={btnStyle()}>
{busy === 'test' ? '확인 중…' : '연결 테스트'}
</button>
<button onClick={() => setShowHelp({ open: true })} disabled={busy !== null} style={btnStyle()}>
<button onClick={() => setShowHelp({ open: true })} style={btnStyle()}>
</button>
</div>