diff --git a/apps/start/src/components/events/table/index.tsx b/apps/start/src/components/events/table/index.tsx
index af06e9f7..30071399 100644
--- a/apps/start/src/components/events/table/index.tsx
+++ b/apps/start/src/components/events/table/index.tsx
@@ -65,7 +65,6 @@ const VirtualRow = memo(
}: VirtualRowProps) {
return (
{
},
onColumnVisibilityChange: setColumnVisibility,
onColumnOrderChange: setColumnOrder,
+ getRowId: (row, index) => row.id ?? `loading-${index}`,
});
const inViewportRef = useRef
(null);
diff --git a/apps/start/src/components/profiles/table/index.tsx b/apps/start/src/components/profiles/table/index.tsx
index df46040e..8617a0d2 100644
--- a/apps/start/src/components/profiles/table/index.tsx
+++ b/apps/start/src/components/profiles/table/index.tsx
@@ -66,6 +66,7 @@ export const ProfilesTable = memo(
: updaterOrValue;
setPage(nextPagination.pageIndex + 1);
},
+ getRowId: (row, index) => row.id ?? `loading-${index}`,
});
return (
diff --git a/apps/start/src/components/sessions/table/index.tsx b/apps/start/src/components/sessions/table/index.tsx
index fbf1920a..40c5db68 100644
--- a/apps/start/src/components/sessions/table/index.tsx
+++ b/apps/start/src/components/sessions/table/index.tsx
@@ -95,7 +95,6 @@ const VirtualRow = memo(
}: VirtualRowProps) {
return (
{
columnVisibility,
},
onColumnVisibilityChange: setColumnVisibility,
+ getRowId: (row, index) => row.id ?? `loading-${index}`,
});
const inViewportRef = useRef(null);