Skip to content

Commit

Permalink
self code-review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pawan Kumar authored and Pawan Kumar committed Sep 30, 2024
1 parent 7e14ef0 commit 3de191f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export interface TextProps {
/** Sets the CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. Only use as a **last resort**. Use style props instead. */
className?: string;
/** The children of the component. */
children: ReactNode;
children?: ReactNode;
/** title attribute for the component */
title?: string;
/** Sets the HTML [id](https://developer.mozilla.org/en-US/docs/Web/API/Element/id) for the element. */
Expand Down
2 changes: 0 additions & 2 deletions app/client/packages/icons/src/stories/Thumbnails.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Meta } from "@storybook/addon-docs";
import { Flex } from "@appsmith/wds";
import { AIChatThumbnail } from "../components/Thumbnails/AIChatThumbnail";
import { ButtonThumbnail } from "../components/Thumbnails/ButtonThumbnail";
import { CheckboxGroupThumbnail } from "../components/Thumbnails/CheckboxGroupThumbnail";
import { CheckboxThumbnail } from "../components/Thumbnails/CheckboxThumbnail";
Expand Down Expand Up @@ -39,7 +38,6 @@ Icon set for Widget Explorer Panel, which provides a visual representation of th
export const Icons = () => {
return (
<Flex gap="spacing-4" wrap="wrap">
<AIChatThumbnail />
<ButtonThumbnail />
<CheckboxGroupThumbnail />
<CheckboxThumbnail />
Expand Down

0 comments on commit 3de191f

Please sign in to comment.