Skip to content

Commit 74b81a5

Browse files
fix: issue in guestlogin of owner subscription has expired
1 parent 950b747 commit 74b81a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/OpenSign/src/constant/Utils.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function fetchSubscription(
2121
try {
2222
const extClass = localStorage.getItem("Extand_Class");
2323
let extUser;
24-
if (extClass) {
24+
if (extClass && extClass.length > 0) {
2525
const jsonSender = JSON.parse(extClass);
2626
extUser = jsonSender[0].objectId;
2727
} else {
@@ -1351,8 +1351,8 @@ export const multiSignEmbed = async (
13511351
position.type === radioButtonWidget
13521352
? 10
13531353
: position.type === "checkbox"
1354-
? 10
1355-
: newUpdateHeight;
1354+
? 10
1355+
: newUpdateHeight;
13561356
const newHeight = ind ? (ind > 0 ? widgetHeight : 0) : widgetHeight;
13571357

13581358
if (signyourself) {

0 commit comments

Comments
 (0)