+
{createSkeletonRect({
...SKELETON_STYLES.title,
width: isAllVendors ? SIZES.title.width.all : SIZES.title.width.specific,
@@ -158,7 +159,13 @@ const PricingVendorIntroSkeleton = memo(({
...SKELETON_STYLES.button,
width: SIZES.button.width,
height: SIZES.button.height
- }, 'button')}
+ }, 'copy-button')}
+
+ {isMobile && createSkeletonRect({
+ ...SKELETON_STYLES.button,
+ width: SIZES.button.width,
+ height: SIZES.button.height
+ }, 'filter-button')}
);
diff --git a/web/src/components/table/model-pricing/layout/header/PricingVendorIntroWithSkeleton.jsx b/web/src/components/table/model-pricing/layout/header/PricingVendorIntroWithSkeleton.jsx
index 15b3392b..0a64416b 100644
--- a/web/src/components/table/model-pricing/layout/header/PricingVendorIntroWithSkeleton.jsx
+++ b/web/src/components/table/model-pricing/layout/header/PricingVendorIntroWithSkeleton.jsx
@@ -33,6 +33,7 @@ const PricingVendorIntroWithSkeleton = memo(({
return (
);
}