Skip to content

Commit 65355d8

Browse files
committed
fix: update tag normalization regex
1 parent f6b32a6 commit 65355d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/hooks/model-pricing/usePricingFilterCounts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { useMemo } from 'react';
2323
const normalizeTags = (tags = '') =>
2424
tags
2525
.toLowerCase()
26-
.split(/[,;|\s]+/)
26+
.split(/[,;|]+/)
2727
.map((t) => t.trim())
2828
.filter(Boolean);
2929

0 commit comments

Comments
 (0)