Skip to content

Commit

Permalink
feat: fixes ProductShelf Override
Browse files Browse the repository at this point in the history
  • Loading branch information
renatamottam committed Jul 12, 2023
1 parent d28723a commit 22a3555
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/overrides/ProductShelf.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { SectionOverride } from "@faststore/core/src/typings/overrides"

const SECTION = 'ProductShelf' as const

const overrides: SectionOverride[typeof SECTION] = {
name: SECTION,
const override: SectionOverride = {
section: SECTION,
components: {
__experimentalProductCard: { props: { aspectRatio: 1 } },
__experimentalProductCard: { props: { aspectRatio: 0.8 } },
},
}

export default overrides
export { override }

0 comments on commit 22a3555

Please sign in to comment.