Skip to content

Commit

Permalink
Message about the Discord bridge
Browse files Browse the repository at this point in the history
  • Loading branch information
mybearworld committed Jul 6, 2024
1 parent 771f382 commit 78652a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/User.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ export const User = (props: UserProps) => {
</div>
) : (
<>
<Markdown>{user.quote ?? ""}</Markdown>
<Markdown>
{props.username === "Discord"
? "This user is used to bridge posts from the official Meower Discord servers and other servers to Meower.\nTherefore, it gives people the opportunity to not use Meower at all while still interacting with its community.\n**This is harmful to Meower.** Features that Meower lacks are compensated for using this feature.\nBecause of this, Meower never gets a chance to improve - as people can just use Discord instead.\nPlease, *do not* use the bridge. This is vital for Meower's existence.\n\n_This message was added by Roarer._"
: user.quote ?? ""}
</Markdown>
{credentials && credentials.username !== props.username ? (
<Button type="button" onClick={dm}>
DM
Expand Down
3 changes: 3 additions & 0 deletions src/components/UserView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export const UserView = forwardRef<HTMLButtonElement, UserViewProps>(
{props.username}{" "}
{props.text ? (
<span className="text-sm">({props.text})</span>
) : undefined}{" "}
{props.username === "Discord" ? (
<span className="text-sm">(Harmful. Click to learn more)</span>
) : undefined}
</div>
</button>
Expand Down

0 comments on commit 78652a7

Please sign in to comment.