2.The following code snippet is executed by a Lightning web component in an environment with more than 2,000 lead records:
@AuraEnabled
public void static updateLeads( ) {
for(Lead thisLead: [SELECT Origin__c FROM Lead]) {
thisLead.LeadSource = thisLead.Origin__c;
update thisLead;
}
}
Which governor limit will likely be exceeded within the Apex transaction?