diff --git a/features/record/utils/remove-special-symbols.ts b/features/record/utils/remove-special-symbols.ts index 905d993b..26b0fe47 100644 --- a/features/record/utils/remove-special-symbols.ts +++ b/features/record/utils/remove-special-symbols.ts @@ -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, ''); };