Skip to content

Commit

Permalink
fix(BugBountyCards): update typing of href prop for submit button
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerAPfledderer committed Dec 17, 2024
1 parent 6c09074 commit 70ea4cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/BugBountyCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ const CardRow = ({ children }: ChildOnlyProp) => (
<Flex className="mx-4 my-16 flex-wrap justify-between">{children}</Flex>
)

const SubmitBugBountyButton = ({ children, ...props }: ButtonLinkProps) => (
const SubmitBugBountyButton = ({
children,
...props
}: Omit<ButtonLinkProps, "href">) => (
<ButtonLink
className="m-4"
href="https://forms.gle/Gnh4gzGh66Yc3V7G8"
Expand Down

0 comments on commit 70ea4cb

Please sign in to comment.