chore: replace play icon with sync icon on connections list (#983)

Co-authored-by: MaheshtheDev <38828053+MaheshtheDev@users.noreply.github.com>
This commit is contained in:
vorflux[bot] 2026-05-21 17:32:34 +05:30 committed by GitHub
parent 53ae4af5ab
commit bdf23d2b5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -36,9 +36,9 @@ function buildMcpAuthorizeResumeUrl(
function AnimatedGradientBackground() {
return (
<div className="fixed inset-0 z-0 overflow-hidden">
<div className="fixed inset-0 z-0 overflow-hidden bg-[#030912]">
<motion.div
className="absolute top-[20%] left-0 right-0 bottom-0 bg-[url('/onboarding/bg-gradient-0.png')] bg-size-[150%_auto] bg-top bg-no-repeat"
className="absolute top-0 left-0 right-0 bottom-0 bg-[url('/onboarding/bg-gradient-0.png')] bg-size-[150%_auto] bg-top bg-no-repeat"
initial={{ y: "100%" }}
animate={{
y: 0,
@ -54,7 +54,7 @@ function AnimatedGradientBackground() {
}}
/>
<motion.div
className="absolute top-[20%] left-0 right-0 bottom-0 bg-[url('/onboarding/bg-gradient-1.png')] bg-size-[150%_auto] bg-top bg-no-repeat"
className="absolute top-0 left-0 right-0 bottom-0 bg-[url('/onboarding/bg-gradient-1.png')] bg-size-[150%_auto] bg-top bg-no-repeat"
initial={{ y: "100%" }}
animate={{
y: 0,

View file

@ -12,7 +12,7 @@ import {
ChevronDown,
History,
Loader2,
Play,
RefreshCw,
Plus,
Trash2,
Zap,
@ -270,7 +270,7 @@ function ConnectionRow({
{isSyncing ? (
<Loader2 className="size-[18px] animate-spin" />
) : (
<Play className="size-[18px]" />
<RefreshCw className="size-[18px]" />
)}
</button>
)}