Skip to content

Commit

Permalink
FIx lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bhardwajaditya committed Feb 16, 2023
1 parent 07f6fed commit f9e1f7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion helperFunctions/SalesforceMessageHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ export async function messageFilter(

case 'AgentTyping':
const salesforceBotUsername: string = await getAppSettingValue(read, AppSettingId.SALESFORCE_BOT_USERNAME);
await agentTypingListener(messageRoom.id, modify.getNotifier().typing({ id: messageRoom.id, username: i?.message?.name || salesforceBotUsername}));
await agentTypingListener(
messageRoom.id,
modify.getNotifier().typing({ id: messageRoom.id, username: i?.message?.name || salesforceBotUsername }),
);
break;

case 'AgentDisconnect':
Expand Down

0 comments on commit f9e1f7b

Please sign in to comment.