Stable #75

Merged
LucidKobold merged 6 commits from stable into stable 2022-09-18 14:25:52 -04:00
3 changed files with 11 additions and 11 deletions
Showing only changes of commit 2ead64bcd9 - Show all commits

View File

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