Skip to content

Commit

Permalink
fix: last build error
Browse files Browse the repository at this point in the history
  • Loading branch information
oreHGA committed Jun 22, 2023
1 parent 3f9faee commit c625445
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Dialog from "@radix-ui/react-dialog";
// import { ArrowRight, X } from "lucide-react";
import { X } from "lucide-react";
import Link from "next/link";
import { FC } from "react";

Expand All @@ -19,7 +19,7 @@ export const MobileMenu: FC<IMobileMenuProps> = ({ open, onMobileMenuClose }) =>
<Dialog.Root open={open}>
<Dialog.Portal>
<Dialog.Overlay className="bg-blackA9 data-[state=open]:animate-overlayShow fixed inset-0" />
<Dialog.Content className="data-[state=open]:animate-contentShow fixed top-0 left-0 right-0 z-30 h-full w-full bg-white p-4 focus:outline-none dark:bg-dark-gradient md:hidden">
<Dialog.Content className="data-[state=open]:animate-contentShow fixed left-0 right-0 top-0 z-30 h-full w-full bg-white p-4 focus:outline-none dark:bg-dark-gradient md:hidden">
<div className="flex items-center justify-between">
<Logo withText />
<Button rightIcon={<X />} size="icon" intent="ghost" onClick={onMobileMenuClose} />
Expand All @@ -31,7 +31,7 @@ export const MobileMenu: FC<IMobileMenuProps> = ({ open, onMobileMenuClose }) =>
<Link
key={link.title}
href={`${link.href}`}
className="block rounded-lg py-2 px-3 text-base font-semibold leading-7"
className="block rounded-lg px-3 py-2 text-base font-semibold leading-7"
>
{link.title}
</Link>
Expand Down

1 comment on commit c625445

@vercel
Copy link

@vercel vercel bot commented on c625445 Jun 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

fusion – ./neurofusion/next-client

fusion-neurofusion-research-inc.vercel.app
usefusion.app
fusion-git-master-neurofusion-research-inc.vercel.app
www.usefusion.app

Please sign in to comment.