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

fix: update twitter logo to X #1331

Merged
merged 1 commit into from
Oct 19, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions next/src/components/dialog/HelpDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useTranslation } from "next-i18next";
import React, { useEffect, useState } from "react";
import { FaDiscord, FaGithub, FaTwitter } from "react-icons/fa";
import { FaDiscord, FaGithub } from "react-icons/fa";
import {FaXTwitter} from 'react-icons/fa6';

import Dialog from "../../ui/dialog";

Expand Down Expand Up @@ -65,7 +66,7 @@ export default function HelpDialog() {
)
}
>
<FaTwitter size={30} />
<FaXTwitter size={30} />
</div>
<div
className="cursor-pointer rounded-full bg-slate-6 p-3 hover:bg-slate-8"
Expand Down
4 changes: 2 additions & 2 deletions next/src/components/sidebar/links.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import {
FaHome,
FaLinkedin,
FaQuestion,
FaTwitter,
FaWater,
} from "react-icons/fa";
import {FaXTwitter} from 'react-icons/fa6';

type LinkMetadata = {
name: string;
Expand Down Expand Up @@ -85,7 +85,7 @@ export const SOCIAL_LINKS: LinkMetadata[] = [
{
name: "Twitter",
href: "https://twitter.com/ReworkdAI",
icon: FaTwitter,
icon: FaXTwitter,
enabled: true,
},
{
Expand Down