style: change upload complete status bar color to green
All checks were successful
Automated Container Build / build-and-push (push) Successful in 40s

This commit is contained in:
Elijah 2026-05-23 14:42:46 -07:00
parent 2596382ea8
commit c9f84fc257

View file

@ -2076,7 +2076,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) {
initial={{ width: 0 }}
animate={{ width: `${percentage}%` }}
style={{
backgroundColor: batch.status === 'error' ? 'var(--color-danger)' : 'var(--color-accent)',
backgroundColor: batch.status === 'error' ? 'var(--color-danger)' : batch.status === 'complete' ? 'var(--color-success)' : 'var(--color-accent)',
}}
/>
</div>