Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Twitter links (deactivated account) #1606

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/components/page/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { LinkButton } from 'components/helpers/link'
import { useAppStatus } from 'context/useAppStatus'
import { useTheme } from 'context/useTheme'
import React from 'react'
import { FaDiscord, FaEnvelopeOpenText, FaGithub, FaReddit, FaTwitter } from 'react-icons/fa'
import { FaDiscord, FaEnvelopeOpenText, FaGithub, FaReddit } from 'react-icons/fa'
import { GITHUB_URL } from 'utils/env'

interface IContactProps {
Expand All @@ -28,7 +28,6 @@ const Contact: React.FC<IContactProps> = ({ size = 'normal' }) => {
/>
<LinkButton href="//reddit.com/r/AoSReminders/" btnClass={btnClass} Icon={FaReddit} text={'Reddit'} />
<LinkButton href="//discord.gg/2nt9Fxp" btnClass={btnClass} Icon={FaDiscord} text={'Discord'} />
<LinkButton href="//twitter.com/daviseford" btnClass={btnClass} Icon={FaTwitter} text={'Twitter'} />
</>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/routes/Faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Faq = () => {
/>
<FaqEntry
title="I've noticed an incorrect or missing rule!"
text={`Please ping me on Discord, Twitter, email, or open a new issue on Github.`}
text={`Please ping me on Discord, email me, or open a new issue on Github.`}
/>
</div>
</div>
Expand Down