From 9b2d14b418b33b1cb70af6c025b4e42c3cfd3778 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Thu, 8 Jan 2026 19:51:17 -0700 Subject: [PATCH] allow deep-link for 'did' page with no parameter (to show current user) --- src/interfaces/deepLinks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/deepLinks.ts b/src/interfaces/deepLinks.ts index 0fe5c68d..1402bc8d 100644 --- a/src/interfaces/deepLinks.ts +++ b/src/interfaces/deepLinks.ts @@ -53,7 +53,7 @@ export const deepLinkPathSchemas = { inviteJwt: z.string().optional(), }), did: z.object({ - did: z.string(), + did: z.string().optional(), }), "invite-one-accept": z.object({ // optional because A) it could be a query param, and B) the page displays an input if things go wrong