Log when we clear profile name

This commit is contained in:
Scott Nonnenberg
2025-10-10 09:49:38 +10:00
committed by GitHub
parent 290d2f3b4b
commit f7d5a91772
3 changed files with 19 additions and 29 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ const CALL_LINK_ROOT_KEY_PATTERN =
/([A-Z]{4})-[A-Z]{4}-[A-Z]{4}-[A-Z]{4}-[A-Z]{4}-[A-Z]{4}-[A-Z]{4}-[A-Z]{4}/gi;
const ATTACHMENT_URL_KEY_PATTERN = /(attachment:\/\/[^\s]+key=)([^\s]+)/gi;
const REDACTION_PLACEHOLDER = '[REDACTED]';
const CARD_NUMBER_PATTERN = /\d\d(\d[- ]?){11,16}\d/g;
const CARD_NUMBER_PATTERN = /\d\d(\d[-]?){11,16}\d/g;
export type RedactFunction = (value: string) => string;