Skip to content

Commit 17de48a

Browse files
committed
chore: fix type
1 parent d2fc2d8 commit 17de48a

File tree

1 file changed

+2
-1
lines changed
  • apps/issuer-service/src/routes/credentials

1 file changed

+2
-1
lines changed

Diff for: apps/issuer-service/src/routes/credentials/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ const credentials: FastifyPluginAsyncJsonSchemaToTs = async (
2626

2727
return {
2828
credential,
29-
isRevoked: fastify.revocationCache.get(credential.id) !== undefined,
29+
isRevoked:
30+
fastify.revocationCache.get(credential.vc.id) !== undefined,
3031
};
3132
});
3233

0 commit comments

Comments
 (0)