diff --git a/packages/plugins/toolkits/src/page.tsx b/packages/plugins/toolkits/src/page.tsx index 29f2eb633..4fedb6104 100644 --- a/packages/plugins/toolkits/src/page.tsx +++ b/packages/plugins/toolkits/src/page.tsx @@ -1181,23 +1181,19 @@ function ToolkitWorkspace(props: { ); } -function ToolkitTileSkeleton(props: { index: number }) { +function ToolkitTileSkeleton() { return ( ); } -function ToolkitSectionSkeleton(props: { title?: string; offset: number }) { +function ToolkitSectionSkeleton(props: { title?: string }) { return (
{props.title ? ( @@ -1208,10 +1204,11 @@ function ToolkitSectionSkeleton(props: { title?: string; offset: number }) { ) : null} -
- {Array.from({ length: 3 }).map((_, index) => ( - - ))} +
+
); @@ -1223,11 +1220,11 @@ function ToolkitGridSkeleton(props: { showOwnerLabels: boolean }) {
{props.showOwnerLabels ? ( <> - - + + ) : ( - + )}