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 bd86288 commit a5f3e6bCopy full SHA for a5f3e6b
src/migration/flexcard.ts
@@ -88,12 +88,7 @@ export class CardMigrationTool extends BaseMigrationTool implements MigrationToo
88
// Perform Records Migration from VlocityCard__c to OmniUiCard
89
async migrate(): Promise<MigrationResult[]> {
90
// Get All the Active VlocityCard__c records
91
- // const allCards = await this.getAllActiveCards();
92
- let allCards = await this.getAllActiveCards();
93
- let filteredCards = allCards.filter(
94
- (card: any) => typeof card === 'object' && 'Name' in card && card.Name.includes('ABC')
95
- );
96
- allCards = filteredCards;
+ const allCards = await this.getAllActiveCards();
97
98
Logger.log(this.messages.getMessage('foundFlexCardsToMigrate', [allCards.length]));
99
0 commit comments