diff --git a/front/packages/primitives/src/utils/head.web.tsx b/front/packages/primitives/src/utils/head.web.tsx index ec8a2714..37e5dfd1 100644 --- a/front/packages/primitives/src/utils/head.web.tsx +++ b/front/packages/primitives/src/utils/head.web.tsx @@ -23,7 +23,7 @@ import NextHead from "next/head"; export const Head = ({ title, description }: { title?: string | null; description?: string | null }) => { return ( - {title && {title + "- Kyoo"}} + {title && {title + " - Kyoo"}} {description && } );