group posts

This commit is contained in:
Виталий Лавшонок
2025-11-15 22:23:26 +03:00
parent dfc2985209
commit 56b6f9b339
28 changed files with 624 additions and 47 deletions

View File

@@ -69,7 +69,6 @@ const ContestEditor = () => {
const { contest: contestById, status: contestByIdstatus } = useAppSelector(
(state) => state.contests.fetchContestById,
);
console.log(contestByIdstatus, contestById);
useEffect(() => {
if (status === 'successful') {
}
@@ -100,9 +99,7 @@ const ContestEditor = () => {
}));
setMissionIdInput('');
})
.catch((err) => {
console.error('Ошибка при загрузке миссии:', err);
});
.catch((err) => {});
};
const removeMission = (removeId: number) => {