Build [v1.14.24]
This commit is contained in:
@@ -13,22 +13,22 @@ export function SearchErrorModal({ isOpen, error, onRetry, onSkip, canRetry = tr
|
||||
|
||||
return (
|
||||
<div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50">
|
||||
<div className="bg-white rounded-lg p-6 max-w-md shadow-xl">
|
||||
<h2 className="text-xl font-normal mb-2 text-rose-500">Search failed</h2>
|
||||
<p className="text-sm text-slate-600 mb-4">{error || 'Unable to retrieve specs from the web'}</p>
|
||||
<div className="bg-background p-6 max-w-md shadow-xl border border-outline/30">
|
||||
<h2 className="text-xl font-normal mb-2 text-error">Search failed</h2>
|
||||
<p className="text-sm text-secondary mb-4">{error || 'Unable to retrieve specs from the web'}</p>
|
||||
|
||||
<div className="flex gap-3">
|
||||
{canRetry && (
|
||||
<button
|
||||
onClick={onRetry}
|
||||
className="flex-1 px-4 py-2 bg-primary text-white rounded font-normal text-sm hover:bg-primary/90"
|
||||
className="flex-1 px-4 py-2 bg-primary text-primary-foreground font-normal text-sm hover:bg-primary/90"
|
||||
>
|
||||
Retry
|
||||
</button>
|
||||
)}
|
||||
<button
|
||||
onClick={onSkip}
|
||||
className="flex-1 px-4 py-2 border border-slate-300 rounded font-normal text-sm hover:bg-slate-50"
|
||||
className="flex-1 px-4 py-2 border border-outline/30 font-normal text-sm hover:bg-surface-container text-foreground"
|
||||
>
|
||||
Skip
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user