Skip to content

Commit

Permalink
chore: 정규식 한글 허용
Browse files Browse the repository at this point in the history
  • Loading branch information
wokbjso committed Aug 27, 2024
1 parent 95e367f commit 5e2e716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/record/utils/remove-special-symbols.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const removeSpecialSymbols = (text: string) => {
return text.replace(/[^a-zA-Z0-9]/g, '');
return text.replace(/[^a-zA-Z0-9가-힣]/g, '');
};

0 comments on commit 5e2e716

Please sign in to comment.