Skip to content

Commit

Permalink
Automated linting update and features.json sync
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 20, 2023
1 parent dca1e1f commit ff607f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,7 @@ export default function AddElementList({
return (
<div className="flex flex-col items-start py-1">
{options.map((props) => {
return (
<AddElementOption
{...props}
elementType={activeType}
/>
);
return <AddElementOption {...props} elementType={activeType} />;
})}
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function AddElementOption({
onClick={handleSelect}
aria-label={`Add ${displayName} Element`}
>
<ElementIcon elementType={elementType} />
<ElementIcon elementType={elementType} />
{displayName}
</button>
);
Expand Down

0 comments on commit ff607f2

Please sign in to comment.