diff --git a/src/components/entities/project/public/ProjectTableRow.tsx b/src/components/entities/project/public/ProjectTableRow.tsx index 2d7495e..a10d2e9 100644 --- a/src/components/entities/project/public/ProjectTableRow.tsx +++ b/src/components/entities/project/public/ProjectTableRow.tsx @@ -7,7 +7,7 @@ import { } from "@mui/material"; import { ResponsiveStack } from "../../../custom/ResponsiveLayout"; import { useResponsiveWidth } from "../../../../hooks/layout/useResponsiveWidth"; -import { useLayoutEffect, useRef, useState } from "react"; +import { useRef } from "react"; import { useBreakpoints } from "../../../../hooks/mediaQueries"; import StretchyTypography from "../../../custom/StretchyTypography"; diff --git a/src/pages/admin/TestimonyPage.tsx b/src/pages/admin/TestimonyPage.tsx index 7ed14f1..7369773 100644 --- a/src/pages/admin/TestimonyPage.tsx +++ b/src/pages/admin/TestimonyPage.tsx @@ -32,7 +32,7 @@ export default function Testimonies() { { key: "name", label: "Nom", - content: (item) => stripHtml(item.name), + content: (item) => stripHtml(item.name || ""), }, { key: "company",