diff options
Diffstat (limited to 'apps/web')
| -rw-r--r-- | apps/web/components/dashboard/cleanups/TagDuplicationDetention.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/cleanups/TagDuplicationDetention.tsx b/apps/web/components/dashboard/cleanups/TagDuplicationDetention.tsx index 619158fd..61132a60 100644 --- a/apps/web/components/dashboard/cleanups/TagDuplicationDetention.tsx +++ b/apps/web/components/dashboard/cleanups/TagDuplicationDetention.tsx @@ -34,7 +34,7 @@ interface Suggestion { } function normalizeTag(tag: string) { - return tag.toLocaleLowerCase().replace(/[ -]/g, ""); + return tag.toLocaleLowerCase().replace(/[ -_]/g, ""); } const useSuggestions = () => { |
