auto-sync: 2026-05-19 15:33:14

This commit is contained in:
cfdaily
2026-05-19 15:33:14 +08:00
parent e51a6e0d3a
commit 620d1dc4cc
@@ -307,7 +307,7 @@ export default function CheckpointPanel({
if (error) return (
<div style={{ fontSize: 12, color: '#ef4444', textAlign: 'center', padding: 20 }}>
<div>{error}</div>
<button onClick={() => setCheckpoints([]) || setLoading(true)} style={{ marginTop: 8, fontSize: 11, padding: '4px 12px', borderRadius: 4, border: '1px solid var(--line)', background: 'transparent', color: 'var(--fg)', cursor: 'pointer' }}></button>
<button onClick={() => { setCheckpoints([]); setLoading(true); }} style={{ marginTop: 8, fontSize: 11, padding: '4px 12px', borderRadius: 4, border: '1px solid var(--line)', background: 'transparent', color: 'var(--fg)', cursor: 'pointer' }}></button>
</div>
);