From 66e00a1bc460b1fafaa903dc5b20730ec81ba152 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Mon, 1 Aug 2022 09:51:23 -0600 Subject: [PATCH] Challenge url params optional --- og-image/api/_lib/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/og-image/api/_lib/types.ts b/og-image/api/_lib/types.ts index eb8b412d..0aa0d30b 100644 --- a/og-image/api/_lib/types.ts +++ b/og-image/api/_lib/types.ts @@ -18,6 +18,6 @@ export interface ParsedRequest { creatorName: string creatorUsername: string creatorAvatarUrl: string - challengeAmount: string - challengeOutcome: string + challengeAmount?: string + challengeOutcome?: string }