From 1bc5b5306c69496b5add87e72748ab60a4940b5f Mon Sep 17 00:00:00 2001 From: ShubhamThite214 <72144641+ShubhamThite214@users.noreply.github.com> Date: Fri, 8 Oct 2021 09:33:04 +0530 Subject: [PATCH] update Utils.jsx --- common/Utils.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Utils.jsx b/common/Utils.jsx index aa588fd..7ae20c3 100644 --- a/common/Utils.jsx +++ b/common/Utils.jsx @@ -130,7 +130,7 @@ function saveTextFile(pText, filepath) { fileOut = new File(filepath); fileOut.lineFeed = fileLineFeed; - fileOut.open("w", "TEXT", "????"); + fileOut.open("w", "TEXT", "?????"); fileOut.write(pText); fileOut.close(); }