From 52f796cc282f55f1957090422b7ff1ec6a256fb1 Mon Sep 17 00:00:00 2001 From: ReDBrother Date: Sun, 26 Oct 2025 09:52:04 +0300 Subject: [PATCH] add_holopins --- .../js/widgets/pages/profile/UserProfile.jsx | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/services/app/apps/codebattle/assets/js/widgets/pages/profile/UserProfile.jsx b/services/app/apps/codebattle/assets/js/widgets/pages/profile/UserProfile.jsx index e46dc98a8..7c628c789 100644 --- a/services/app/apps/codebattle/assets/js/widgets/pages/profile/UserProfile.jsx +++ b/services/app/apps/codebattle/assets/js/widgets/pages/profile/UserProfile.jsx @@ -15,6 +15,31 @@ import Achievement from './Achievement'; import Heatmap from './Heatmap'; import UserStatCharts from './UserStatCharts'; +function HolipinTags({ name }) { + return ( + name && ( +
+
+
+
+ Holopins +
+
+ + {`@${name}'s + +
+
+
+
+ ) + ); +} + function UserProfile() { const [userData, setUserData] = useState(null); const dispatch = useDispatch(); @@ -154,6 +179,7 @@ function UserProfile() { +