Skip to content

Commit

Permalink
Merge pull request #716 from techmatters/CHI-3070-flags
Browse files Browse the repository at this point in the history
support correct channelTransformations
  • Loading branch information
mythilytm authored Nov 6, 2024
2 parents 153a77a + fe1a1ec commit db182d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/getProfileFlagsForIdentifier.protected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ const channelTransformations: { [k: string]: TransformIdentifierFunction[] } = {
modica: [(s) => s.replace('modica:', ''), phoneNumberStandardization],
facebook: [(s) => s.replace('messenger:', '')],
messenger: [(s) => s.replace('messenger:', '')],
instagram: [],
instagram: [(s) => s.replace('instagram:', '')],
line: [],
telegram: [],
telegram: [(s) => s.replace('telegram:', '')],
web: [],
};

Expand Down

0 comments on commit db182d9

Please sign in to comment.