Skip to content

Commit

Permalink
Fix deepsource
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank1513 committed Jun 21, 2024
1 parent 0c8ac3d commit c5fbc77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/nextjs-pages/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { Inter } from "next/font/google";

const inter = Inter({ subsets: ["latin"] });

/** Default app */
export default function App({ Component, pageProps }: AppProps) {
return (
<>
Expand Down
1 change: 1 addition & 0 deletions examples/nextjs-pages/src/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Html, Head, Main, NextScript } from "next/document";

/** Custom document */
export default function Document() {
return (
<Html lang="en">
Expand Down
1 change: 1 addition & 0 deletions examples/nextjs-pages/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Head from "next/head";
import { LandingPage } from "@repo/shared/dist/server";
import { Demo } from "@repo/shared";

/** Landing page */
export default function Home() {
return (
<>
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/src/server/layout/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HTMLProps, ReactNode } from "react";
import { HTMLProps } from "react";
import styles from "./layout.module.scss";
import { ForkMe } from "@mayank1513/fork-me/server";
import config from "@repo/scripts/rebrand.config.json";
Expand Down

0 comments on commit c5fbc77

Please sign in to comment.