We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 143e56a commit fbe1c25Copy full SHA for fbe1c25
site/src/components/Filter/filter.tsx
@@ -124,12 +124,12 @@ const stringifyFilter = (filterValue: FilterValues): string => {
124
return result.trim();
125
};
126
127
-const BaseSkeleton: FC<SkeletonProps> = ({ children, ...skeltonProps }) => {
+const BaseSkeleton: FC<SkeletonProps> = ({ children, ...skeletonProps }) => {
128
return (
129
<Skeleton
130
variant="rectangular"
131
height={36}
132
- {...skeltonProps}
+ {...skeletonProps}
133
css={(theme) => ({
134
backgroundColor: theme.palette.background.paperLight,
135
borderRadius: "6px",
0 commit comments