Skip to content

Commit 1e77399

Browse files
fix: review comments
1 parent 72fc072 commit 1e77399

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/utils/orgUtils/index.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,15 @@ export class OrgUtils {
267267
// Define the object name for querying installed packages
268268
private static readonly objectName = 'Publisher';
269269

270+
270271
// Define the fields to retrieve from the Organization object
271272
private static readonly orgFields = ['Name'];
272273

273274
// Define the object name for querying installed packages
274275
private static readonly orgObjectName = 'Organization';
275276

276-
private static readonly standardDataModel = 'Standard';
277-
private static readonly customDataModel = 'Custom';
277+
private static readonly standardDataModel = "Standard";
278+
private static readonly customDataModel = "Custom";
278279
/**
279280
* Fetches package details (version and namespace) for specific installed packages.
280281
*
@@ -312,7 +313,7 @@ export class OrgUtils {
312313
packageDetails: packageDetails,
313314
omniStudioOrgPermissionEnabled: omniStudioOrgPermissionEnabled,
314315
orgDetails: orgDetails[0],
315-
dataModel: omniStudioOrgPermissionEnabled ? this.standardDataModel : this.customDataModel,
316+
dataModel: omniStudioOrgPermissionEnabled ? this.standardDataModel : this.customDataModel
316317
};
317318
}
318319

@@ -332,4 +333,4 @@ export class OrgUtils {
332333

333334
return true;
334335
}
335-
}
336+
}

0 commit comments

Comments
 (0)