From 5b5517729ea9a2dde65d56eaef493721d55ad11b Mon Sep 17 00:00:00 2001 From: Rhys Sullivan <39114868+RhysSullivan@users.noreply.github.com> Date: Sat, 27 Jun 2026 00:20:19 -0700 Subject: [PATCH] Fix toolkit loading skeleton layout --- packages/plugins/toolkits/src/page.tsx | 27 ++++++++++++-------------- 1 file changed, 12 insertions(+), 15 deletions(-) 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 ? ( <> - - + + ) : ( - + )}