This commit is contained in:
parent
ddf53c54a9
commit
323c06c909
@ -539,12 +539,7 @@ export const VerifyPage = () => {
|
||||
)}
|
||||
|
||||
{meta && signedStatus === SignedStatus.User_Is_Not_Next_Signer && (
|
||||
<>
|
||||
<DisplayMeta meta={meta} nextSigner={nextSinger} />
|
||||
<Typography component='h6'>
|
||||
Awaiting signature by {hexToNpub(nextSinger)}
|
||||
</Typography>
|
||||
</>
|
||||
<DisplayMeta meta={meta} nextSigner={nextSinger} />
|
||||
)}
|
||||
|
||||
{meta && signedStatus === SignedStatus.User_Is_Next_Signer && (
|
||||
@ -750,20 +745,14 @@ const DisplayMeta = ({ meta, nextSigner }: DisplayMetaProps) => {
|
||||
|
||||
let signedStatus = '-'
|
||||
|
||||
if (user.role === UserRole.viewer) {
|
||||
signedStatus = '-'
|
||||
} else {
|
||||
if (user.role === UserRole.signer) {
|
||||
// check if user has signed the document
|
||||
if (user.pubkey in meta.signedEvents) {
|
||||
signedStatus = 'Signed'
|
||||
}
|
||||
// check if user is the next signer
|
||||
else if (user.pubkey === nextSigner) {
|
||||
signedStatus === 'Next Singer'
|
||||
}
|
||||
// if none of the above condition is true then it means user's signature is pending
|
||||
else {
|
||||
signedStatus === 'Pending'
|
||||
signedStatus = 'Awaiting Signature'
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user