Skip to content

Commit

Permalink
satisfying linter
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHomanics committed Nov 14, 2023
1 parent 1973e5e commit 7730513
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const menuLinks: HeaderMenuLink[] = [
href: "/example-ui",
icon: <SparklesIcon className="h-4 w-4" />,
},

];

export const HeaderMenuLinks = () => {
Expand All @@ -42,8 +41,8 @@ export const HeaderMenuLinks = () => {
<Link
href={href}
passHref
className={`${isActive ? "bg-secondary shadow-md" : ""
} hover:bg-secondary hover:shadow-md focus:!bg-secondary active:!text-neutral py-1.5 px-3 text-sm rounded-full gap-2 grid grid-flow-col`}
className={`${isActive ? "bg-secondary shadow-md" : ""}
hover:bg-secondary hover:shadow-md focus:!bg-secondary active:!text-neutral py-1.5 px-3 text-sm rounded-full gap-2 grid grid-flow-col`}
>
{icon}
<span>{label}</span>
Expand Down

0 comments on commit 7730513

Please sign in to comment.