mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
Fix Equicord Image Quality
This commit is contained in:
parent
88dae01356
commit
5edf071a29
3 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@ import { SettingsTab, wrapTab } from "./shared";
|
|||
const cl = classNameFactory("vc-settings-");
|
||||
|
||||
const DEFAULT_DONATE_IMAGE = "https://cdn.discordapp.com/emojis/1026533090627174460.png";
|
||||
const SHIGGY_DONATE_IMAGE = "https://i.imgur.com/rJDRtUB.png";
|
||||
const SHIGGY_DONATE_IMAGE = "https://i.imgur.com/57ATLZu.png";
|
||||
|
||||
type KeysOfType<Object, Type> = {
|
||||
[K in keyof Object]: Object[K] extends Type ? K : never;
|
||||
|
|
|
@ -56,7 +56,7 @@ function CheckBadge({ badge, author }: { badge: string; author: User; }): JSX.El
|
|||
className={roleIconClassName}
|
||||
name="Equicord Contributor"
|
||||
size={20}
|
||||
src={"https://i.imgur.com/rJDRtUB.png"}
|
||||
src={"https://i.imgur.com/57ATLZu.png"}
|
||||
/>
|
||||
</span>
|
||||
) : null;
|
||||
|
|
|
@ -34,7 +34,7 @@ import { Forms, Toasts, UserStore } from "@webpack/common";
|
|||
import { User } from "discord-types/general";
|
||||
|
||||
const CONTRIBUTOR_BADGE = "https://vencord.dev/assets/favicon.png";
|
||||
const EQUICORD_CONTRIBUTOR_BADGE = "https://i.imgur.com/rJDRtUB.png";
|
||||
const EQUICORD_CONTRIBUTOR_BADGE = "https://i.imgur.com/57ATLZu.png";
|
||||
const SUNCORD_CONTRIBUTOR_BADGE = "https://raw.githubusercontent.com/verticalsync/Suncord/main/src/assets/icon.png";
|
||||
|
||||
const ContributorBadge: ProfileBadge = {
|
||||
|
|
Loading…
Reference in a new issue