diff --git a/src/renderer/components/table/virtual-table.tsx b/src/renderer/components/table/virtual-table.tsx
index 70ba687728..b28620a3a2 100644
--- a/src/renderer/components/table/virtual-table.tsx
+++ b/src/renderer/components/table/virtual-table.tsx
@@ -28,33 +28,52 @@
console.log(`${rowVirtualizer.getTotalSize()}px`)
return (
-
-
-
-
- {rowVirtualizer.getVirtualItems().map(virtualRow => {
- const row = rows[virtualRow.index] as Row
- return (
-
- {row.getVisibleCells().map(cell => {
- return (
- |
- {flexRender(
- cell.column.columnDef.cell,
- cell.getContext()
- )}
- |
- )
- })}
-
- )
- })}
-
-
-
+ <>
+
+
+
+
+ {rowVirtualizer.getVirtualItems().map(virtualRow => {
+ const row = rows[virtualRow.index] as Row
+
+ return (
+
+ {row.getVisibleCells().map(cell => {
+ return (
+
+ {flexRender(
+ cell.column.columnDef.cell,
+ cell.getContext()
+ )}
+
+ )
+ })}
+
+ )
+ })}
+
+
+
+ >
)
}
\ No newline at end of file