We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faa5cd0 commit 6ef3ed2Copy full SHA for 6ef3ed2
components/view/viewer/excel-viewer.tsx
@@ -228,9 +228,8 @@ export default function ExcelViewer({
228
<div className="" ref={hotRef}></div>
229
<div className="flex max-w-fit divide-x divide-gray-200 overflow-x-scroll whitespace-nowrap rounded-b-sm bg-[#f0f0f0] px-1 ">
230
{sheetData.map((sheet, index) => (
231
- <div className="px-1">
+ <div className="px-1" key={sheet.sheetName}>
232
<Button
233
- key={sheet.sheetName}
234
onClick={() => setSelectedSheetIndex(index)}
235
className={cn(
236
"mb-1 rounded-none rounded-b-sm bg-[#f0f0f0] font-normal text-gray-950 hover:bg-gray-50",
0 commit comments