replce isSigner variable name to isGuestSigner

This commit is contained in:
RaktimaNXG
2023-11-09 14:23:56 +05:30
parent 5fa60d8135
commit 5ba1f79f3b
4 changed files with 13 additions and 13 deletions
@@ -42,8 +42,8 @@ function RenderPdf({
const isMobile = window.innerWidth < 767;
const newWidth = window.innerWidth;
const scale = isMobile ? pdfOriginalWidth / newWidth : 1;
//check isSigner is present in local if yes than handle login flow header in mobile view
const isSigner = localStorage.getItem("isSigner");
//check isGuestSigner is present in local if yes than handle login flow header in mobile view
const isGuestSigner = localStorage.getItem("isGuestSigner");
//function for render placeholder block over pdf document
@@ -239,7 +239,7 @@ function RenderPdf({
<div
style={{
border: "0.1px solid #ebe8e8",
marginTop: isSigner && "30px"
marginTop: isGuestSigner && "30px"
}}
ref={drop}
id="container"