diff --git a/apps/web/src/components/source-manager.tsx b/apps/web/src/components/source-manager.tsx index 0e3f1f1..34edb29 100644 --- a/apps/web/src/components/source-manager.tsx +++ b/apps/web/src/components/source-manager.tsx @@ -47,7 +47,12 @@ export function SourceManager({ onCacheCleared }: SourceManagerProps) { Cached Sources - @@ -69,7 +74,7 @@ export function SourceManager({ onCacheCleared }: SourceManagerProps) { diff --git a/apps/web/src/components/ui/confirm-button.tsx b/apps/web/src/components/ui/confirm-button.tsx index 0bb47b5..446adef 100644 --- a/apps/web/src/components/ui/confirm-button.tsx +++ b/apps/web/src/components/ui/confirm-button.tsx @@ -97,8 +97,9 @@ export function ConfirmButton({ size="icon" className={cn( className, - isConfirming && - "bg-destructive text-primary-foreground rounded-md animate-confirm-pulse hover:bg-destructive hover:text-primary-foreground", + isConfirming + ? "bg-destructive text-primary-foreground rounded-md animate-confirm-pulse hover:bg-destructive hover:text-primary-foreground" + : "hover:text-hover-destructive", )} onClick={handleClick} onKeyDown={handleKeyDown}