Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/integration/next-pagesdir/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export { dsfrDocumentApi, augmentDocumentWithEmotionCache };

const brandTop = <>INTITULE<br />OFFICIEL</>;

const homeLinkPops = { "href": "/", "title": "Accueil - Nom de l’entité (ministère, secrétariat d‘état, gouvernement)" };
const homeLinkProps = { "href": "/", "title": "Accueil - Nom de l’entité (ministère, secrétariat d‘état, gouvernement)" };

function App({ Component, pageProps }: AppProps) {

Expand All @@ -67,7 +67,7 @@ function App({ Component, pageProps }: AppProps) {
<Header
brandTop={brandTop}
serviceTitle="Nom du site / service"
homeLinkProps={homeLinkPops}
homeLinkProps={homeLinkProps}
navigation={[
{
"text": "Home",
Expand Down Expand Up @@ -106,7 +106,7 @@ function App({ Component, pageProps }: AppProps) {
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore
eu fugiat nulla pariatur.
`}
homeLinkProps={homeLinkPops}
homeLinkProps={homeLinkProps}
bottomItems={[headerFooterDisplayItem]}
/>
<Display />
Expand Down