Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Feb 28, 2024
1 parent 536d609 commit e8c3618
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
6 changes: 1 addition & 5 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ export default function Document() {
<Html>
<Head>
<link rel="icon" href="/favicon.ico" />
<link
rel="icon"
type="svg"
href={process.env.NEXT_PUBLIC_FAV_ICON}
/>
<link rel="icon" type="svg" href={process.env.NEXT_PUBLIC_FAV_ICON} />
</Head>
<body>
<Main />
Expand Down
2 changes: 1 addition & 1 deletion pages/email-reservation-success.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import {
Document,
Email,
Heading1,
Logo,
Page,
PageContent,
PageContentMain,
Paragraph,
URLValue,
Logo,
} from "../src/components";

export const getServerSideProps = async ({ locale }: { locale: string }) => ({
Expand Down
2 changes: 1 addition & 1 deletion pages/voorgenomen-huwelijk/partner/aanvrager-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import {
Document,
Email,
Heading1,
Logo,
Page,
PageContent,
PageContentMain,
Paragraph,
URLValue,
Logo,
} from "../../../src/components";
import { exampleState } from "../../../src/data/huwelijksplanner-state";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

import { UtrechtDigidButton, UtrechtIconArrow } from "@utrecht/web-component-library-react";
import Head from "next/head";
import Link from "next/link";
import { useTranslation } from "next-i18next";
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
import {
Expand All @@ -33,12 +32,12 @@ import {
Document,
Email,
Heading1,
Logo,
Page,
PageContent,
PageContentMain,
Paragraph,
URLValue,
Logo,
} from "../../../src/components";
import { exampleState } from "../../../src/data/huwelijksplanner-state";

Expand Down
2 changes: 1 addition & 1 deletion src/components/huwelijksplanner/PageFooterTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const PageFooterTemplate = () => {

{data &&
data?.content.map((item: any, idx: number) => (
<section>
<section key={idx}>
<h3 className="utrecht-heading-3 utrecht-heading-3--distanced">{item.title}</h3>
<p className="utrecht-paragraph utrecht-paragraph--distanced">
{item.title === "Telefoon" && (
Expand Down
2 changes: 1 addition & 1 deletion src/components/logo.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from "react";
import clsx from "clsx";
import * as React from "react";

interface LogoProps {
variant?: "header" | "footer" | "navbar";
Expand Down

0 comments on commit e8c3618

Please sign in to comment.