Repalce patreon link and references with ko-fi

This commit is contained in:
Lucid Kobold
2022-09-18 00:35:55 -04:00
parent 623e72fce8
commit e9ea6aa279
3 changed files with 8 additions and 8 deletions

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 "./Patreon";
import Patreon from "./KoFi";
import Twitter from "./Twitter";
const Buttons = (): JSX.Element => {
@@ -30,7 +30,7 @@ const Buttons = (): JSX.Element => {
);
}
if (type === "patreon") {
if (type === "ko-fi") {
return <Patreon key={type} />;
}