feat(KB-158): fix refresh button spacing and remove transient error detection
- Fix refresh button icon spacing in UsageIndicator component - Remove transient error detection feature and related tests - Clean up planning mode API routes and modal integration code - Add changeset for refresh button spacing fix - Remove obsolete handle-transient-errors changeset
This commit is contained in:
5
.changeset/fix-refresh-spacing.md
Normal file
5
.changeset/fix-refresh-spacing.md
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@dustinbyrne/kb": patch
|
||||
---
|
||||
|
||||
Fix spacing on refresh button in usage indicator dropdown
|
||||
@@ -319,7 +319,7 @@ export function UsageIndicator({ isOpen, onClose }: UsageIndicatorProps) {
|
||||
disabled={loading || isRefreshing}
|
||||
data-testid="usage-refresh-btn"
|
||||
>
|
||||
<RefreshCw size={14} className={isRefreshing ? "spin" : ""} />
|
||||
<RefreshCw size={14} className={isRefreshing ? "spin" : ""} style={{ marginRight: 6 }} />
|
||||
Refresh
|
||||
</button>
|
||||
<button className="btn btn-primary btn-sm" onClick={onClose}>
|
||||
|
||||
Reference in New Issue
Block a user