username stuff

This commit is contained in:
thororen1234 2024-06-13 18:36:57 -04:00
parent e445037996
commit d7eff5dca7
2 changed files with 5 additions and 5 deletions

View file

@ -74,7 +74,7 @@ function ContributorModal({ user }: { user: User; }) {
.sort((a, b) => Number(a.required ?? false) - Number(b.required ?? false));
}, [user.id, user.username]);
const ContributedHyperLink = <Link href="https://vencord.dev/source">contributed</Link>;
const ContributedHyperLink = <Link href="https://github.com/Equicord/Equicord">contributed</Link>;
return (
<>
@ -110,11 +110,11 @@ function ContributorModal({ user }: { user: User; }) {
{plugins.length ? (
<Forms.FormText>
This person has {ContributedHyperLink} to {pluralise(plugins.length, "plugin")}!
{user.username} has {ContributedHyperLink} to {pluralise(plugins.length, "plugin")}!
</Forms.FormText>
) : (
<Forms.FormText>
This person has not made any plugins. They likely {ContributedHyperLink} to Vencord in other ways!
{user.username} has not made any plugins. They likely {ContributedHyperLink} to Vencord in other ways!
</Forms.FormText>
)}

View file

@ -185,11 +185,11 @@ function BadgeModal({ user }: { user: User; }) {
</div>
{badgeImages.length ? (
<Forms.FormText>
This person has {badgeImages.length} global badges.
{user.username} has {badgeImages.length} global badges.
</Forms.FormText>
) : (
<Forms.FormText>
This person has no global badges.
{user.username} has no global badges.
</Forms.FormText>
)}
{!!badgeImages.length && (