Skip to content

Commit

Permalink
Fixing prettier warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbreese committed Nov 7, 2023
1 parent 89f0fdc commit 2c3b248
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/commands/wizard/lwcGenerationCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,17 @@ export class LwcGenerationCommand {
type: 'getQuickActionStatus',
action: async (_panel, data, callback) => {
// TODO: Hook this up to function from W-14439417 that parses landing_page.json.
const sobjects = ['Account', 'Contact', 'Opportunity', 'SomeOther'];
const sobjects = [
'Account',
'Contact',
'Opportunity',
'SomeOther'
];
if (callback) {
const quickActionStatus = await LwcGenerationCommand.checkForExistingQuickActions(sobjects);
const quickActionStatus =
await LwcGenerationCommand.checkForExistingQuickActions(
sobjects
);
callback(quickActionStatus);
}
}
Expand Down

0 comments on commit 2c3b248

Please sign in to comment.