From 70ea4cb7ffc6badc8edb6c2820442d84a7f67c37 Mon Sep 17 00:00:00 2001 From: tylerapfledderer Date: Tue, 17 Dec 2024 12:14:20 -0500 Subject: [PATCH] fix(BugBountyCards): update typing of `href` prop for submit button --- src/components/BugBountyCards.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/BugBountyCards.tsx b/src/components/BugBountyCards.tsx index fb017ea3611..56786711e3e 100644 --- a/src/components/BugBountyCards.tsx +++ b/src/components/BugBountyCards.tsx @@ -14,7 +14,10 @@ const CardRow = ({ children }: ChildOnlyProp) => ( {children} ) -const SubmitBugBountyButton = ({ children, ...props }: ButtonLinkProps) => ( +const SubmitBugBountyButton = ({ + children, + ...props +}: Omit) => (