From 476399abe8958de62fc8c7292eda0e6a4f20fc86 Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Tue, 8 Feb 2022 15:18:10 +0000 Subject: [PATCH] fixed type for stripe (#1746) --- ee/components/stripe/Payment.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/components/stripe/Payment.tsx b/ee/components/stripe/Payment.tsx index d5a3d32d..1b8a8fda 100644 --- a/ee/components/stripe/Payment.tsx +++ b/ee/components/stripe/Payment.tsx @@ -35,7 +35,7 @@ type Props = { }; eventType: { id: number }; user: { username: string | null }; - location: string; + location?: string | null; }; type States =