We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97af0af commit 30541daCopy full SHA for 30541da
1 file changed
packages/app-store/salesforce/lib/graphql/SalesforceGraphQLClient.ts
@@ -37,7 +37,7 @@ export class SalesforceGraphQLClient {
37
* 3. If no account is found, then find contacts that match the email domain and find the account that the majority of contacts are connect to
38
*/
39
async GetAccountRecordsForRRSkip(email: string): Promise<Contact[]> {
40
- const log = logger.getSubLogger({ prefix: ["[getAccountRecordsForRRSkip]:${email}"] });
+ const log = logger.getSubLogger({ prefix: [`[getAccountRecordsForRRSkip]:${email}`] });
41
const emailDomain = email.split("@")[1];
42
const websites = this.getAllPossibleAccountWebsiteFromEmailDomain(emailDomain);
43
0 commit comments