diff --git a/core/src/components/cat-tag/cat-tag.tsx b/core/src/components/cat-tag/cat-tag.tsx index 8aec7c3a..96318e80 100644 --- a/core/src/components/cat-tag/cat-tag.tsx +++ b/core/src/components/cat-tag/cat-tag.tsx @@ -318,7 +318,6 @@ export class CatTag { // Join the escaped delimiters to create a character class const regexPattern = `[${escapedDelimiters.join('')}]`; - // Return a new RegExp object with the global flag for splitting return new RegExp(regexPattern, 'g'); } }