Skip to content

Commit

Permalink
fix: temporary commented out due to type errors (will fix later on)
Browse files Browse the repository at this point in the history
  • Loading branch information
var-bin committed Jan 4, 2025
1 parent 1566edb commit 54bdefd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/blog/RelatedPosts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Settings } from '../../constants/settings';

import Button from '../common/buttons/Button';

import BlogSection from './BlogSection';
/* import BlogSection from './BlogSection'; */

interface RelatedPostsProps {
data: Array<BlogItem>;
Expand All @@ -34,7 +34,7 @@ const RelatedPosts: FC<RelatedPostsProps> = ({ data }) => {
{data.map(item => {
return (
<Grid key={item.id} container item direction="column" xs={12} sm={6} md={4}>
<BlogSection data={item} />
{/* <BlogSection data={item} /> */}
</Grid>
);
})}
Expand Down

0 comments on commit 54bdefd

Please sign in to comment.