Álvaro Valenzuela Valdes commited on
Commit ·
2c5640b
1
Parent(s): bd7895c
Fix syntax error in AgentAnalysis.tsx
Browse files
frontend/components/AgentAnalysis.tsx
CHANGED
|
@@ -564,7 +564,14 @@ export default function AgentAnalysis({ tender, companyProfile, analysis, onAnal
|
|
| 564 |
<p className="text-slate-400 mb-6">{error}</p>
|
| 565 |
<button
|
| 566 |
onClick={handleAnalyzeClick}
|
| 567 |
-
className="px-6 py-3 rounded-2xl bg-red-500/20 text-red-400 font-bold border
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 568 |
{activeAnalysis && (
|
| 569 |
<div id="analysis-results" className="grid gap-8 grid-cols-1 lg:grid-cols-12 animate-in fade-in slide-in-from-bottom-8 duration-500 scroll-mt-20">
|
| 570 |
<div className="lg:col-span-8 space-y-8">
|
|
|
|
| 564 |
<p className="text-slate-400 mb-6">{error}</p>
|
| 565 |
<button
|
| 566 |
onClick={handleAnalyzeClick}
|
| 567 |
+
className="px-6 py-3 rounded-2xl bg-red-500/20 text-red-400 font-bold border border-red-500/30 hover:bg-red-500/30 transition-all active:scale-95"
|
| 568 |
+
>
|
| 569 |
+
Retry Analysis
|
| 570 |
+
</button>
|
| 571 |
+
</div>
|
| 572 |
+
)}
|
| 573 |
+
|
| 574 |
+
{/* Analysis Results & Intelligent Sections */}
|
| 575 |
{activeAnalysis && (
|
| 576 |
<div id="analysis-results" className="grid gap-8 grid-cols-1 lg:grid-cols-12 animate-in fade-in slide-in-from-bottom-8 duration-500 scroll-mt-20">
|
| 577 |
<div className="lg:col-span-8 space-y-8">
|