fix problem finding offer identifiers

This commit is contained in:
2025-06-06 19:06:29 -06:00
parent ce9c193a30
commit 6b515a3197
2 changed files with 7 additions and 6 deletions

View File

@@ -136,7 +136,7 @@ export function isDid(did: string): boolean {
* @param {string} did - The DID to check
* @returns {boolean} True if DID is hidden
*/
export function isHiddenDid(did: string): boolean {
export function isHiddenDid(did: string | undefined): boolean {
return did === HIDDEN_DID;
}