We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270411d commit 912830dCopy full SHA for 912830d
packages/builder/src/components/providers/identity/credentials.ts
@@ -96,6 +96,12 @@ export const fetchVerifiableCredential = async (
96
throw new VerificationError("No credential found");
97
}
98
99
+ if (response.data[0].credential.issuer.length === 0) {
100
+ throw new VerificationError(
101
+ "Error verifying ownership - ensure you are a public member of the org"
102
+ );
103
+ }
104
+
105
// return everything that was used to create the credential (along with the credential)
106
return {
107
signature,
0 commit comments