diff --git a/src/pages/verify/index.tsx b/src/pages/verify/index.tsx
index 6572ebc..fc5fa2d 100644
--- a/src/pages/verify/index.tsx
+++ b/src/pages/verify/index.tsx
@@ -539,12 +539,7 @@ export const VerifyPage = () => {
)}
{meta && signedStatus === SignedStatus.User_Is_Not_Next_Signer && (
- <>
-
-
- Awaiting signature by {hexToNpub(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'
}
}