diff --git a/pages/community/tsc.tsx b/pages/community/tsc.tsx
index 755652736f1b..17f7ab233ab6 100644
--- a/pages/community/tsc.tsx
+++ b/pages/community/tsc.tsx
@@ -1,5 +1,4 @@
import { sortBy } from 'lodash';
-import React, { useState } from 'react';
import type { Tsc } from '@/types/pages/community/Community';
@@ -66,11 +65,9 @@ function addAdditionalUserInfo(user: Tsc) {
* @returns The Twitter SVG component.
*/
function TwitterSVG() {
- const [isHovered, setIsHovered] = useState(false);
-
return (
-
setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
-
+
+
);
}
@@ -81,11 +78,9 @@ function TwitterSVG() {
* @returns The GitHub SVG component.
*/
function GitHubSVG() {
- const [isHovered, setIsHovered] = useState(false);
-
return (
-
setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
-
+
+
);
}
@@ -96,12 +91,10 @@ function GitHubSVG() {
* @returns The LinkedIn SVG component.
*/
function LinkedInSVG() {
- const [isHovered, setIsHovered] = useState(false);
-
return (
-
setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
+
{/* Use the imported SVG icon component */}
-
+
);
}