diff --git a/src/components/VencordSettings/VencordTab.tsx b/src/components/VencordSettings/VencordTab.tsx index 04fb057..89bbefd 100644 --- a/src/components/VencordSettings/VencordTab.tsx +++ b/src/components/VencordSettings/VencordTab.tsx @@ -30,9 +30,15 @@ function VencordSettings() { const [settingsDir, , settingsDirPending] = useAwaiter(() => VencordNative.ipc.invoke(IpcEvents.GET_SETTINGS_DIR), "Loading..."); const settings = useSettings(); + const [donateImage] = React.useState( + Math.random() > 0.5 + ? "https://cdn.discordapp.com/emojis/1026533090627174460.png" + : "https://media.discordapp.net/stickers/1039992459209490513.png" + ); + return ( - + {IS_WEB ? ( @@ -104,8 +110,11 @@ function VencordSettings() { } +interface DonateCardProps { + image: string; +} -function DonateCard() { +function DonateCard({ image }: DonateCardProps) { return (