Skip to content

Commit dd8b3ff

Browse files
committed
feat: gate identity verification UI behind user presence
1 parent 07b621a commit dd8b3ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/didit/IdentityVerificationSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function IdentityVerificationSection({
9696
</p>
9797
)}
9898

99-
{status !== 'Approved' && status !== 'In Review' && (
99+
{user && status !== 'Approved' && status !== 'In Review' && (
100100
<>
101101
<DiditVerifyButton />
102102
{isLocalhost() && (

0 commit comments

Comments
 (0)