diff --git a/frontend/src/components/CsvViewer.jsx b/frontend/src/components/CsvViewer.jsx index b6b548c..e472e90 100644 --- a/frontend/src/components/CsvViewer.jsx +++ b/frontend/src/components/CsvViewer.jsx @@ -70,6 +70,8 @@ function CsvViewer({ filePath, onClose }) { const cardBg = useColorModeValue('white', 'gray.700') const tableBg = useColorModeValue('gray.50', 'gray.800') const headerBg = useColorModeValue('gray.100', 'gray.600') + const hoverBg = useColorModeValue('gray.100', 'gray.600') + const hoverTextColor = useColorModeValue('gray.800', 'white') // Load CSV data const loadData = async (page = 1, pageSize = DEFAULT_PAGE_SIZE) => { @@ -429,7 +431,15 @@ function CsvViewer({ filePath, onClose }) { {filteredData.map((row, rowIndex) => ( - + {columns.map((column, colIndex) => (