Skip to content

Commit 586167c

Browse files
committed
fix: allow skeleton qa override
1 parent e091ed4 commit 586167c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/content/Skeleton/Skeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export function Skeleton({ layout, isStatic, ...props }: CubeSkeletonProps) {
192192
layout = layout || 'page';
193193

194194
return LAYOUT_MAP[layout] ? (
195-
LAYOUT_MAP[layout]({ isStatic, ...props, qa: 'Skeleton' })
195+
LAYOUT_MAP[layout]({ isStatic, qa: 'Skeleton', ...props })
196196
) : (
197197
<Placeholder {...props} />
198198
);

0 commit comments

Comments
 (0)