Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hasparus committed Nov 1, 2024
1 parent 8895d70 commit e50093e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function ExploreMainProductCards({ className, ...rest }: ExploreMainProdu
</TextLink>
</div>
<ul className="-mx-12 -my-2 flex shrink-0 grow flex-row gap-[22px] overflow-auto px-12 py-2 [&>:nth-child(n+4)]:[@media(min-width:1490px)]:hidden">
{[PRODUCTS.HIVE, PRODUCTS.YOGA, PRODUCTS.MESH, PRODUCTS.CODEGEN].map((product, i) => (
{[PRODUCTS.HIVE, PRODUCTS.YOGA, PRODUCTS.MESH, PRODUCTS.CODEGEN].map(product => (
<MainProductCard key={product.name} as="li" product={product} />
))}
</ul>
Expand Down
1 change: 0 additions & 1 deletion packages/components/src/components/text-link.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Layout from 'nextra-theme-docs';
import { Meta, StoryObj } from '@storybook/react';
import { hiveThemeDecorator } from '../../../../.storybook/hive-theme-decorator';
import { ArrowIcon } from './icons';
Expand Down

0 comments on commit e50093e

Please sign in to comment.