refactor: use muted color for pending and publishing relay states

Changed publishing spinner from blue to muted to match pending state,
creating a more consistent visual hierarchy where only success (green)
and error (red) states use color.
This commit is contained in:
Claude
2026-01-21 16:01:58 +00:00
parent 316dc8eea9
commit f2c95d8e75

View File

@@ -805,7 +805,7 @@ export function PostViewer({ windowId }: PostViewerProps = {}) {
<Circle className="h-4 w-4 text-muted-foreground" />
)}
{relay.status === "publishing" && (
<Loader2 className="h-4 w-4 animate-spin text-blue-500" />
<Loader2 className="h-4 w-4 animate-spin text-muted-foreground" />
)}
{relay.status === "success" && (
<Check className="h-4 w-4 text-green-500" />