diff --git a/web/app/components/datasets/create/step-two/escape.ts b/web/app/components/datasets/create/step-two/escape.ts index 098f43bc7..2e1c3a9d7 100644 --- a/web/app/components/datasets/create/step-two/escape.ts +++ b/web/app/components/datasets/create/step-two/escape.ts @@ -3,7 +3,7 @@ function escape(input: string): string { return '' const res = input - .replaceAll('\\', '\\\\') + // .replaceAll('\\', '\\\\') // This would add too many backslashes .replaceAll('\0', '\\0') .replaceAll('\b', '\\b') .replaceAll('\f', '\\f')