Skip to content

Commit

Permalink
patch module error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroji-fusky committed Oct 7, 2023
1 parent 9853018 commit 023a03b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions apps/website/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import type { Metadata } from "next"
import dynamic from "next/dynamic"
import { Inter, Open_Sans } from "next/font/google"
import "@myfursona/biro-ui/styles/globals.scss"
import "@fortawesome/fontawesome-svg-core/styles.css"
import "react-quill/dist/quill.snow.css"
import { config } from "@fortawesome/fontawesome-svg-core"
import Providers from "@/context"
import {
ClientInit,
Expand All @@ -15,8 +13,6 @@ import {
SkipNav
} from "@/components/base"

config.autoAddCss = false

const Sidebar = dynamic(
() => import("@/components/base").then((c) => c.Sidebar),
{ ssr: false }
Expand Down
6 changes: 3 additions & 3 deletions apps/website/src/components/ui/Menu/MenuItem.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import Link from "next/link"
import type { UrlObject } from "url"
import type { ReactElement } from "react"
import type { LucideIcon } from "lucide-react"
import type { IconType } from "react-icons"

export default function MenuItem({
prefix,
suffix,
name,
href
}: {
prefix: ReactElement<LucideIcon> | ReactElement
suffix?: ReactElement<LucideIcon> | ReactElement
prefix: ReactElement<IconType> | ReactElement
suffix?: ReactElement<IconType> | ReactElement
name: string
href: string
}) {
Expand Down

0 comments on commit 023a03b

Please sign in to comment.