diff --git a/FRONTEND_V2/src/pages/user/ChampsPage.jsx b/FRONTEND_V2/src/pages/user/ChampsPage.jsx
index c1e20ab..83ac960 100644
--- a/FRONTEND_V2/src/pages/user/ChampsPage.jsx
+++ b/FRONTEND_V2/src/pages/user/ChampsPage.jsx
@@ -26,24 +26,31 @@ const ChampsPage = () => {
- {
- data?.map(elem => {
- const status = getCompetitionStatusByDates(elem.startedAt, elem.endedAt)
-
- return
- {status === competitionStatuses.IN_PROGRESS &&
- <>
- Войти
- >}
-
- })
- }
+
+ {
+ data?.map(elem => {
+ const status = getCompetitionStatusByDates(elem.startedAt, elem.endedAt)
+
+ return <>
+
+
+ {status === competitionStatuses.IN_PROGRESS &&
+ <>
+ Войти
+ >}
+
+
+ >
+ })
+ }
+
+
>
);
};