배치 수정 페이지 우상단 저장 버튼 삭제

This commit is contained in:
dohyeons 2025-11-27 11:55:39 +09:00
parent a7135b4c3c
commit 06c39df3a9
1 changed files with 8 additions and 6 deletions

View File

@ -404,14 +404,16 @@ export default function BatchEditPage() {
<h1 className="text-3xl font-bold"> </h1>
</div>
<div className="flex space-x-2">
<Button onClick={loadBatchConfig} variant="outline" disabled={loading}>
<RefreshCw className={`w-4 h-4 mr-2 ${loading ? 'animate-spin' : ''}`} />
<Button
onClick={loadBatchConfig}
variant="outline"
disabled={loading}
>
<RefreshCw
className={`w-4 h-4 mr-2 ${loading ? "animate-spin" : ""}`}
/>
</Button>
<Button onClick={saveBatchConfig} disabled={loading}>
<Save className="w-4 h-4 mr-2" />
</Button>
</div>
</div>