From f2fc7866ae067fff8941e6f60b5c0e5a3814e437 Mon Sep 17 00:00:00 2001 From: DJ Neill Date: Sun, 29 Oct 2023 18:42:29 -0500 Subject: [PATCH] Fix donate button to open in new window by changing the link element to an anchor tag. --- components/donateButton.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/components/donateButton.tsx b/components/donateButton.tsx index 5fc3cd4..18fd60c 100644 --- a/components/donateButton.tsx +++ b/components/donateButton.tsx @@ -1,17 +1,15 @@ -import Link from 'next/link' import { Button } from '@chakra-ui/react' export default function DonateButton() { return ( - - + ) }