mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-31 11:43:32 -05:00
username stuff
This commit is contained in:
parent
e445037996
commit
d7eff5dca7
2 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||
)}
|
||||
|
||||
|
|
|
@ -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 && (
|
||||
|
|
Loading…
Reference in a new issue