Увеличено количество отображаемых скелетонов в компоненте LessonForm с 5 до 6 для улучшения визуального представления загрузки.

This commit is contained in:
Primakov Alexandr Alexandrovich 2025-03-23 15:11:31 +03:00
parent 238c852b27
commit 46107cb3d1

View File

@ -113,7 +113,7 @@ export const LessonForm = ({
<VStack spacing={3} align="stretch" mt={4}>
<Skeleton height="20px" width="70%" />
<SimpleGrid columns={{ base: 1, md: 2 }} spacing={3}>
{[1, 2, 3, 4, 5].map(idx => (
{[1, 2, 3, 4, 5, 6].map(idx => (
<Skeleton key={idx} height="60px" borderRadius="md" />
))}
</SimpleGrid>