Skip to content

Commit f6e9b5e

Browse files
committed
fix(Announcement): adding back className
1 parent a2586cd commit f6e9b5e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

webview-ui/src/components/chat/Announcement.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { memo, type ReactNode, useState } from "react"
22
import { Trans } from "react-i18next"
3+
import { SiDiscord, SiReddit, SiX } from "react-icons/si"
34
import { VSCodeLink } from "@vscode/webview-ui-toolkit/react"
4-
import { SiX, SiDiscord, SiReddit } from "react-icons/si"
55

66
import { Package } from "@roo/package"
77
import { useAppTranslation } from "@src/i18n/TranslationContext"
@@ -104,6 +104,7 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
104104
const SocialLink = ({ icon, label, href }: { icon: ReactNode; label: string; href: string }) => (
105105
<VSCodeLink
106106
href={href}
107+
className="inline-flex items-center gap-1"
107108
onClick={(e) => {
108109
e.preventDefault()
109110
vscode.postMessage({ type: "openExternal", url: href })

0 commit comments

Comments
 (0)