Skip to content

Commit 7f0f81c

Browse files
authored
Merge pull request #766 from OpenSignLabs/build_dep
fix: issue in guestlogin of owner subscription has expired
2 parents a882f07 + 74b81a5 commit 7f0f81c

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 {
@@ -1350,8 +1350,8 @@ export const multiSignEmbed = async (
13501350
position.type === radioButtonWidget
13511351
? 10
13521352
: position.type === "checkbox"
1353-
? 10
1354-
: newUpdateHeight;
1353+
? 10
1354+
: newUpdateHeight;
13551355
const newHeight = ind ? (ind > 0 ? widgetHeight : 0) : widgetHeight;
13561356

13571357
if (signyourself) {

0 commit comments

Comments
 (0)