From c9f84fc257596857cca512842c486d4d3a6b79ff Mon Sep 17 00:00:00 2001 From: Elijah Date: Sat, 23 May 2026 14:42:46 -0700 Subject: [PATCH] style: change upload complete status bar color to green --- frontend/src/components/FileExplorer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/FileExplorer.tsx b/frontend/src/components/FileExplorer.tsx index dd4ff05..683f7fd 100644 --- a/frontend/src/components/FileExplorer.tsx +++ b/frontend/src/components/FileExplorer.tsx @@ -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)', }} />