Skip to content

Commit

Permalink
WIP: update recipes index component
Browse files Browse the repository at this point in the history
  • Loading branch information
kleberbaum committed Oct 11, 2024
1 parent a797821 commit a6f41e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/RezepteIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ interface IAbcProducts {
[key: string]: IJaenProduct[];
}

interface IRecipeGridProps extends StackProps {
interface IRezepteIndexProps extends StackProps {
featuredProducts: IJaenProduct[];
abcProducts: IAbcProducts;
}

const RecipeGrid: FC<IRecipeGridProps> = ({
const RezepteIndex: FC<IRezepteIndexProps> = ({
featuredProducts,
abcProducts,
...props
Expand Down Expand Up @@ -208,4 +208,4 @@ const RecipeGrid: FC<IRecipeGridProps> = ({
);
};

export default RecipeGrid;
export default RezepteIndex;
1 change: 0 additions & 1 deletion src/pages/recipes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ const RecipeSlider: FC<INewsSlidesProps> = ({ productIndex, showNewsTitle }) =>
<RezepteIndex
featuredProducts={featuredProducts}
abcProducts={abcProducts}
display={{ base: 'none', sm: 'grid' }}
mt="16"
/>
{/* Form mobile */}
Expand Down

0 comments on commit a6f41e3

Please sign in to comment.