diff --git a/frontend/src/assets/ts/toolExecutor/limbooleExecutor.ts b/frontend/src/assets/ts/toolExecutor/limbooleExecutor.ts index 9f290f7..9d864e9 100644 --- a/frontend/src/assets/ts/toolExecutor/limbooleExecutor.ts +++ b/frontend/src/assets/ts/toolExecutor/limbooleExecutor.ts @@ -56,7 +56,7 @@ export const executeLimboole = async ( }; const findNonAscii = (str: string) => { - const regex = /[^\x20-\x7E]/g; + const regex = /[^\x00-\x7F]/g; const match = regex.exec(str); if (!match) return -1; // find the line and column and the non-ascii character