Skip to content

Commit 365c2a2

Browse files
Merge pull request #1709 from OpenSignLabs/prafull-opensignlabs-patch-5
fix: quick send not working
2 parents 740ccca + b1b9b20 commit 365c2a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/OpenSign/src/primitives/Validate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const Validate = () => {
5454
) : (
5555
<ModalUi showHeader={false} isOpen={true} showClose={false}>
5656
<div className="flex flex-col justify-center items-center py-4 md:py-5 gap-5">
57-
<p className="text-xl font-medium">{this("session-expired")}</p>
57+
<p className="text-xl font-medium">{t("session-expired")}</p>
5858
<button onClick={handleLoginBtn} className="op-btn op-btn-neutral">
5959
{t("login")}
6060
</button>

apps/OpenSignServer/cloud/parsefunction/createBatchDocs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import axios from 'axios';
2-
import { cloudServerUrl, replaceMailVaribles } from '../../Utils.js';
2+
import { cloudServerUrl, mailTemplate, replaceMailVaribles } from '../../Utils.js';
33
const serverUrl = cloudServerUrl; //process.env.SERVER_URL;
44
const appId = process.env.APP_ID;
55
async function deductcount(docsCount, extUserId) {
@@ -244,7 +244,7 @@ export default async function createBatchDocs(request) {
244244
};
245245
try {
246246
if (request?.user) {
247-
return await batchQuery(request.user.id, Documents, Ip, parseConfig, '', type, publicUrl);
247+
return await batchQuery(request.user.id, Documents, Ip, parseConfig, type, publicUrl);
248248
} else {
249249
throw new Parse.Error(Parse.Error.INVALID_SESSION_TOKEN, 'User is not authenticated.');
250250
}

0 commit comments

Comments
 (0)