diff --git a/app/configuration-items/page.tsx b/app/configuration-items/page.tsx
index e870d34..d673940 100644
--- a/app/configuration-items/page.tsx
+++ b/app/configuration-items/page.tsx
@@ -24,7 +24,7 @@ import {
SelectValue,
} from '@/components/ui/select';
import { CompanySelectorEnhanced } from '@/components/companies/company-selector-enhanced';
-import { ThemeToggle } from '@/components/theme-toggle';
+import { PageHeader } from '@/components/navigation/page-header';
import { ConfigItemModal } from '@/components/configuration-items/config-item-modal';
import { ContactCell } from '@/components/configuration-items/contact-cell';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '@/components/ui/collapsible';
@@ -59,7 +59,6 @@ import {
Calendar as CalendarIcon,
Hash,
Building2,
- ArrowLeft,
Filter,
ArrowUpDown,
ArrowUp,
@@ -520,66 +519,46 @@ function ConfigurationItemsContent() {
};
return (
-
- {/* Header */}
-
-
-
-
-
- {selectedCompany && filteredComparison.length > 0 && (
-
- )}
-
-
-
-
+ )}
+
selectedCompany && setForceRefresh(prev => prev + 1)}
+ disabled={!selectedCompany || loading}
+ >
+
+ Refresh
+
+
setExportModalOpen(true)}
+ disabled={!selectedCompany || displayComparison.length === 0}
+ >
+
+ Export
+
+ >
+ }
+ />
- {/* Main Content */}
-
+
{/* Compact Company Selector & Filters */}
@@ -1320,7 +1299,7 @@ function ConfigurationItemsContent() {
-
+ >
);
}