Repalce patreon link and references with ko-fi

This commit is contained in:
Lucid Kobold
2022-09-18 00:36:42 -04:00
parent e9ea6aa279
commit 2ead64bcd9

View File

@@ -2,7 +2,7 @@ import React from "react";
import { Box, HStack, VStack } from "@chakra-ui/react";
import CustomButton from "./Custom";
import links, { LinkObj } from "./data/links";
import Patreon from "./KoFi";
import KoFi from "./KoFi";
import Twitter from "./Twitter";
const Buttons = (): JSX.Element => {
@@ -31,7 +31,7 @@ const Buttons = (): JSX.Element => {
}
if (type === "ko-fi") {
return <Patreon key={type} />;
return <KoFi key={type} />;
}
if (type === "twitter") {
@@ -61,8 +61,8 @@ const Buttons = (): JSX.Element => {
);
}
if (type === "patreon") {
return <Patreon key={type} />;
if (type === "ko-fi") {
return <KoFi key={type} />;
}
if (type === "twitter") {