Skip to content

Commit

Permalink
fix: LoadingBlinkBox default loading state to false
Browse files Browse the repository at this point in the history
  • Loading branch information
gmolki committed Jun 10, 2024
1 parent 455d3f6 commit 9d969e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Blog/BlogArticleCard/cmp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const BlogArticleCard = ({
category,
blogArticleUrl,
size = "md",
loading = true,
loading = false,
}: BlogArticleCardProps) => {
switch (size) {
case "md":
Expand Down
2 changes: 1 addition & 1 deletion src/components/Blog/BlogArticleCard/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export type BlogArticleCardProps = {
category: string;
blogArticleUrl: string;
size?: "md" | "lg" | "xl" | "full" | "highlighted";
loading: boolean;
loading?: boolean;
};

0 comments on commit 9d969e9

Please sign in to comment.