diff --git a/src/renderer/components/skeleton/index.tsx b/src/renderer/components/skeleton/index.tsx index 0a74730b..4b2057b2 100644 --- a/src/renderer/components/skeleton/index.tsx +++ b/src/renderer/components/skeleton/index.tsx @@ -29,11 +29,17 @@ const StyledSkeleton = styled(MantineSkeleton)` animation-name: run; animation-duration: 1.5s; animation-timing-function: linear; + animation-iteration-count: infinite; content: ''; inset: 0; } `; export const Skeleton = ({ ...props }: MantineSkeletonProps) => { - return ; + return ( + + ); };