diff --git a/src/components/validators/list.tsx b/src/components/validators/list.tsx index a7ec3466ff..8fb27cfb4a 100644 --- a/src/components/validators/list.tsx +++ b/src/components/validators/list.tsx @@ -6,13 +6,13 @@ import { Button, Tabs, VStack, + Skeleton, Link, useBreakpointValue, Flex, Center, Grid, StackSeparator, - Skeleton } from "@chakra-ui/react"; import { ProgressBar, ProgressRoot } from "@/components/ui/progress"; import { useValidators } from "./hooks"; @@ -28,17 +28,11 @@ import SearchValidator from "./search"; import { fetchColumns } from "./utils"; import ColumnHeader from "./header"; -const SkeletonValidatorItems = ({ rowCount = 30, columnCount = 6 }) => { +const SkeletonValidatorItems = ({ rowCount = 30 }) => { return ( <> {Array.from({ length: rowCount }).map((_, rowIndex) => ( -