Skip to content

Commit

Permalink
Remove sync label
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Arze Leon authored and Rodrigo Arze Leon committed Feb 13, 2025
1 parent 7810a81 commit b4224a7
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions packages/ui/domain-components/ConnectionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,25 +72,6 @@ export function ConnectionCard({
}`}>
{connectionName}
</p>
<div>
{conn.status !== 'healthy' ? (
<p
className={`text-center text-sm ${
reconnectId ? 'text-button' : 'text-red-500'
}`}>
{reconnectId ? 'Processing...' : 'Reconnect Required'}
</p>
) : conn.syncInProgress ? (
<div className="flex flex-row items-center justify-start gap-2">
<Loader2 className="size-5 animate-spin text-button" />
<p className="text-center text-sm text-button">
Syncing...
</p>
</div>
) : (
<p className="text-center text-sm text-[#808080]">Synced</p>
)}
</div>
</>
)}
</div>
Expand Down

0 comments on commit b4224a7

Please sign in to comment.