Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: remove all spaces from identifier [] #2303

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion plugin-hrm-form/src/utils/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const getContactValueFromWebchat = task => {
return preEngagementData.contactIdentifier;
};

const trimSpaces = (s: string) => s.replace(' ', '');
const trimSpaces = (s: string) => s.replaceAll(' ', '');

type TransformIdentifierFunction = (c: string) => string;
const channelTransformations: { [k in ChannelTypes]: TransformIdentifierFunction[] } = {
Expand All @@ -40,6 +40,9 @@ const channelTransformations: { [k in ChannelTypes]: TransformIdentifierFunction
web: [],
};

/**
* IMPORTANT: if any logic is changed here, replicate it in serverless/functions/getProfileFlagsForIdentifier.protected.ts
*/
export const getNumberFromTask = (task: CustomITask) => {
if (!isTwilioTask(task)) return null;

Expand Down
Loading