This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix

+2 -2
+2 -2
src/components/Verifier/Verifier.js
··· 146 146 setAgent(agentInstance); 147 147 148 148 // Fetch logged-in user's profile info using the authenticated API 149 - // Use the agent's built-in DID reference after initialization 150 - agentInstance.getProfile({ actor: agentInstance.session.did }) 149 + // Use the DID directly from the session object from useAuth() 150 + agentInstance.getProfile({ actor: session.did }) 151 151 .then(res => { 152 152 console.log('Logged-in user profile fetched successfully:', res.data); 153 153 setUserInfo(res.data);