Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
YoannNumericite committed Nov 3, 2023
1 parent 4967293 commit 61aca7e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
22 changes: 13 additions & 9 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,18 +105,22 @@ function App({ Component, pageProps }: AppProps) {
linkList={[
{
categoryName: "Données personnelles",
links: [{
linkProps: { href: "/privacy-policy" },
text: "Politique de confidentialité",
}]
links: [
{
linkProps: { href: "/privacy-policy" },
text: "Politique de confidentialité",
},
],
},
{
categoryName: "Statistiques",
links: [{
linkProps: { href: "/stats" },
text: "Statistiques d'utilisation",
}]
}
links: [
{
linkProps: { href: "/stats" },
text: "Statistiques d'utilisation",
},
],
},
]}
partnersLogos={{
main: {
Expand Down
12 changes: 6 additions & 6 deletions src/pages/stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ export default function LegalNotices() {
<section className="fr-container">
<h1 style={{ marginBottom: "4rem" }}>Statistiques</h1>
<iframe
src="https://matomo-metabase-nata.fabrique.social.gouv.fr/public/dashboard/4d21c451-4088-425b-9ff4-e301dc6b26de"
frameborder="0"
width="1200"
height="900"
allowtransparency
></iframe>
src="https://matomo-metabase-nata.fabrique.social.gouv.fr/public/dashboard/4d21c451-4088-425b-9ff4-e301dc6b26de"
frameborder="0"
width="1200"
height="900"
allowtransparency
></iframe>
</section>
</>
</>
Expand Down

0 comments on commit 61aca7e

Please sign in to comment.