We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4658fe2 commit ba8ef63Copy full SHA for ba8ef63
apps/namadillo/src/App/Layout/SyncIndicator.tsx
@@ -74,7 +74,7 @@ export const SyncIndicator = (): JSX.Element => {
74
75
return (
76
<div className="flex gap-10 px-2 py-3">
77
- {roundedProgress < 100 && !isShieldedFetching && (
+ {roundedProgress < 100 && isShieldedFetching && (
78
<div className="relative group/tooltip">
79
<div className="relative mt-1">
80
<PulsingRing size="small" />
@@ -108,7 +108,8 @@ export const SyncIndicator = (): JSX.Element => {
108
className={twMerge(
109
"w-2 h-2 rounded-full",
110
"bg-green-500",
111
- isError && "bg-red-500"
+ isSyncing && "bg-yellow-500 animate-pulse",
112
+ isError && !isSyncing && "bg-red-500"
113
)}
114
/>
115
<Tooltip
0 commit comments