diff --git a/src/components/Table/src/hooks/useRowSelection.ts b/src/components/Table/src/hooks/useRowSelection.ts index b24ee460..a58f2677 100644 --- a/src/components/Table/src/hooks/useRowSelection.ts +++ b/src/components/Table/src/hooks/useRowSelection.ts @@ -126,7 +126,6 @@ export function useRowSelection( const found = allSelectedRows.find( (item) => parseRowKeyValue(unref(getRowKey), item) === keyValue, ); - found && trueSelectedRows.push(found); if (found) { trueSelectedRows.push(found); } else {