Skip to content

Commit

Permalink
fix(home): merge error + typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aaadryyy committed Dec 6, 2023
1 parent 640d334 commit 258da05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/home/Dossiers/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import Typography from "@mui/material/Typography";
import Button from "@mui/material/Button";
import Link from "next/link";

import ArrowForwardIcon from "@mui/icons-material/ArrowForward";
import DossierCard from "./DossierCard";
import { ArrowRightIcon } from "@/icons/ArrowRightIcon";

const dissiers = [
const dossiers = [
{
titre: "Restitution des biens culturels spoilés entnre 1933 et 1945",
status: "1e lecture AN",
Expand Down Expand Up @@ -68,7 +68,7 @@ export default function Section() {
variant="text"
component={Link}
href="/dossiers/"
endIcon={<ArrowForwardIcon />}
endIcon={<ArrowRightIcon />}
>
Tous les dossiers
</Button>
Expand All @@ -80,7 +80,7 @@ export default function Section() {
gridGap: 16,
}}
>
{dissiers.map((card) => (
{dossiers.map((card) => (
<DossierCard key={card.titre} {...card} />
))}
</Box>
Expand Down

0 comments on commit 258da05

Please sign in to comment.