Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEscaleira committed May 3, 2024
1 parent fd9ed54 commit 1328274
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ jobs:

- run: yarn
- run: yarn lint
- run: yarn test
2 changes: 1 addition & 1 deletion src/components/layout/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { FC } from "react";
import { NextFont } from "@next/font/dist/types";
import { useRouter } from "next/router";
import Image from "next/image";
import Link from "next/link";
import { NextFont } from "next/dist/compiled/@next/font";
import { ThemeSwitcher } from "src/components/ThemeSwitcher";

interface IHeaderProps {
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { FC } from "react";
import Head from "next/head";
import { ThemeProvider } from "next-themes";
import { NextFont } from "@next/font/dist/types";
import { NextFont } from "next/dist/compiled/@next/font";
import { Header, Footer } from "@/components/layout";

type LayoutProps = {
Expand Down

0 comments on commit 1328274

Please sign in to comment.