Mergin Stable #76

Merged
LucidKobold merged 9 commits from stable into main 2022-09-18 14:30:47 -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 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") {