Skip to content

Commit

Permalink
test if mobile card won't cut
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Rb3 committed May 12, 2024
1 parent f446383 commit db39073
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,18 @@ const FeaturedProjects = () => {
</>
);

const projectCards = useMemo(
() => (
<>
{projects.map((project: any) => {
return <Card key={project.registrant_id} projectId={project.registrant_id} />;
})}
</>
),
[projects],
const projectCards = (
// useMemo(
// () => (
<>
{projects.map((project: any) => {
return <Card key={project.registrant_id} projectId={project.registrant_id} />;
})}
</>
);
// ),
// [projects],
// );

return (
<ContainerHeader>
Expand Down

0 comments on commit db39073

Please sign in to comment.