Álvaro Valenzuela Valdes commited on
Commit ·
437783a
1
Parent(s): 7e01ebe
fix: update Sidebar types to remove Reports tab
Browse files
frontend/components/Sidebar.tsx
CHANGED
|
@@ -11,7 +11,6 @@ type SidebarTab =
|
|
| 11 |
| "Company Profile"
|
| 12 |
| "Agent Analysis"
|
| 13 |
| "Proposal Draft"
|
| 14 |
-
| "Reports"
|
| 15 |
| "History"
|
| 16 |
| "About";
|
| 17 |
|
|
@@ -38,7 +37,6 @@ export default function Sidebar({ tabs, activeTab, onTabSelect, status, lang, fo
|
|
| 38 |
case "Company Profile": return { label: t.companyProfile, icon: "🏢" };
|
| 39 |
case "Agent Analysis": return { label: t.agentAnalysis, icon: "🤖" };
|
| 40 |
case "Proposal Draft": return { label: t.proposalDraft, icon: "✍️" };
|
| 41 |
-
case "Reports": return { label: t.reports, icon: "📑" };
|
| 42 |
case "History": return { label: t.history, icon: "🕒" };
|
| 43 |
case "About": return { label: t.about, icon: "ℹ️" };
|
| 44 |
default: return { label: tab, icon: "•" };
|
|
|
|
| 11 |
| "Company Profile"
|
| 12 |
| "Agent Analysis"
|
| 13 |
| "Proposal Draft"
|
|
|
|
| 14 |
| "History"
|
| 15 |
| "About";
|
| 16 |
|
|
|
|
| 37 |
case "Company Profile": return { label: t.companyProfile, icon: "🏢" };
|
| 38 |
case "Agent Analysis": return { label: t.agentAnalysis, icon: "🤖" };
|
| 39 |
case "Proposal Draft": return { label: t.proposalDraft, icon: "✍️" };
|
|
|
|
| 40 |
case "History": return { label: t.history, icon: "🕒" };
|
| 41 |
case "About": return { label: t.about, icon: "ℹ️" };
|
| 42 |
default: return { label: tab, icon: "•" };
|